Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for oid (0.13 sec)

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

        private static final ASN1ObjectIdentifier KRB5_MECH_OID;
        private static final ASN1ObjectIdentifier KRB5_MS_MECH_OID;
        static final ASN1ObjectIdentifier[] SUPPORTED_MECHS;
        private static final Oid JGSS_KRB5_NAME_OID;
        private static final Oid JGSS_KRB5_MECH_OID;
    
        static {
            KRB5_MECH_OID = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2");
            KRB5_MS_MECH_OID = new ASN1ObjectIdentifier("1.2.840.48018.1.2.2");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

        private static ASN1ObjectIdentifier SPNEGO_MECH_OID;
    
        static {
            try {
                SPNEGO_MECH_OID = new ASN1ObjectIdentifier("1.3.6.1.5.5.2");
            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to initialize OID", e);
            }
        }
    
        private SSPContext mechContext;
    
        private boolean firstResponse = true;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmContext.java

        /**
         * 
         */
        public static ASN1ObjectIdentifier NTLMSSP_OID;
    
        static {
            try {
                NTLMSSP_OID = new ASN1ObjectIdentifier("1.3.6.1.4.1.311.2.2.10");
            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to parse OID", e);
            }
        }
    
        private NtlmPasswordAuthenticator auth;
        private int ntlmsspFlags;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                    if ( tok.getMechanisms() != null ) {
                        Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms()));
                        if ( !mechs.contains(NtlmContext.NTLMSSP_OID) ) {
                            throw new SmbUnsupportedOperationException("Server does not support NTLM authentication");
                        }
                    }
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

        Padding: 6
        reqFlags: c0
        mechToken: 60820b2906092a864886f71201020201006e820b1830820b14a003020105a10302010ea2…
        krb5_blob: 60820b2906092a864886f71201020201006e820b1830820b14a003020105a10302010ea2…
            KRB5 OID: 1.2.840.113554.1.2.2 (KRB5 - Kerberos 5)
            krb5_tok_id: KRB5_AP_REQ (0x0001)
            Kerberos
                ap-req
                    pvno: 5
                    msg-type: krb-ap-req (14)
                    Padding: 0
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
Back to top