Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mechanismListMIC (0.05 sec)

  1. src/main/java/jcifs/spnego/NegTokenInit.java

                    fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechanismToken)));
                }
                final byte[] mechanismListMIC = getMechanismListMIC();
                if (mechanismListMIC != null) {
                    fields.add(new DERTaggedObject(true, 3, new DEROctetString(mechanismListMIC)));
                }
    
                final ASN1EncodableVector ev = new ASN1EncodableVector();
                ev.add(SPNEGO_OID);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

            final byte[] mechanismListMIC = this.mechContext.calculateMIC(ml);
            if (log.isDebugEnabled()) {
                log.debug("Out Mech list " + Arrays.toString(lm));
                log.debug("Out Mech list encoded " + Hexdump.toHexString(ml));
                log.debug("Out Mech list MIC " + Hexdump.toHexString(mechanismListMIC));
            }
            return mechanismListMIC;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         *
         * @return whether to disable sending/verifying SPNEGO mechanismListMIC
         */
        boolean isDisableSpnegoIntegrity();
    
        /**
         *
         * Property {@code jcifs.smb.client.enforceSpnegoIntegrity} (boolean, false)
         *
         * @return whether to enforce verifying SPNEGO mechanismListMIC
         */
        boolean isEnforceSpnegoIntegrity();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top