Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMechanismListMIC (0.16 sec)

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

         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            String mic = null;
            if ( this.getMechanismListMIC() != null ) {
                mic = Hexdump.toHexString(this.getMechanismListMIC(), 0, this.getMechanismListMIC().length);
            }
            return String.format("NegTokenInit[flags=%d,mechs=%s,mic=%s]", this.getContextFlags(), Arrays.toString(this.getMechanisms()), mic);
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

                if ( targ.getResult() == NegTokenTarg.ACCEPT_INCOMPLETE && targ.getMechanismToken() == null && targ.getMechanismListMIC() != null ) {
                    // this indicates that mechlistMIC is required by the server
                    verifyMechListMIC(targ.getMechanismListMIC());
                    return new NegTokenTarg(NegTokenTarg.UNSPECIFIED_RESULT, null, null, calculateMechListMIC());
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/SpnegoToken.java

            return this.mechanismToken;
        }
    
    
        public void setMechanismToken ( byte[] mechanismToken ) {
            this.mechanismToken = mechanismToken;
        }
    
    
        public byte[] getMechanismListMIC () {
            return this.mechanismListMIC;
        }
    
    
        public void setMechanismListMIC ( byte[] mechanismListMIC ) {
            this.mechanismListMIC = mechanismListMIC;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/NegTokenTarg.java

                if ( mechanismToken != null ) {
                    fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechanismToken)));
                }
                byte[] mechanismListMIC = getMechanismListMIC();
                if ( mechanismListMIC != null ) {
                    fields.add(new DERTaggedObject(true, 3, new DEROctetString(mechanismListMIC)));
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
Back to top