Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMechs (0.17 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

            return false;
        }
    
    
        /**
         * Determines what mechanism is being used for this context.
         * 
         * @return the Oid of the mechanism being used
         */
        ASN1ObjectIdentifier[] getMechs () {
            return this.mechs;
        }
    
    
        /**
         * @return the mechanisms announced by the remote end
         */
        ASN1ObjectIdentifier[] getRemoteMechs () {
            return this.remoteMechs;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Context.java

            MIEName targ = new MIEName(this.gssContext.getTargName().export());
    
            ASN1ObjectIdentifier mech = ASN1ObjectIdentifier.getInstance(this.gssContext.getMech().getDER());
            for ( KerberosTicket ticket : subject.getPrivateCredentials(KerberosTicket.class) ) {
                MIEName client = new MIEName(mech, ticket.getClient().getName());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
Back to top