Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for OID (0.57 sec)

  1. src/test/java/jcifs/smb/MIENameTest.java

                ASN1ObjectIdentifier oid = testOid();
                MIEName a = new MIEName(oid, "Alice");
                MIEName b = new MIEName(oid, "alice");
                assertEquals(a, b);
                assertEquals(a.hashCode(), b.hashCode());
            }
    
            @Test
            void equalsHandlesNullNames() {
                ASN1ObjectIdentifier oid = testOid();
                MIEName a = new MIEName(oid, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java

        // Helper methods to create test tokens
    
        private byte[] createGssApiWrapper(ASN1ObjectIdentifier oid, byte[] data) throws IOException {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
    
            // Build the inner content
            ByteArrayOutputStream innerContent = new ByteArrayOutputStream();
            innerContent.write(oid.getEncoded());
            innerContent.write(data);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/MIEName.java

        MIEName(final ASN1ObjectIdentifier oid, final String name) {
            this.oid = oid;
            this.name = name;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals(final Object other) {
    
            if (other instanceof final MIEName terg) {
                if (Objects.equals(this.oid, terg.oid)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/spnego/SpnegoConstantsTest.java

            }
        }
    
        @Test
        @DisplayName("OID values have valid dotted numeric format")
        void oidFormat() {
            assertAll(() -> assertTrue(OID_PATTERN.matcher(SpnegoConstants.SPNEGO_MECHANISM).matches(), "Invalid OID: SPNEGO_MECHANISM"),
                    () -> assertTrue(OID_PATTERN.matcher(SpnegoConstants.KERBEROS_MECHANISM).matches(), "Invalid OID: KERBEROS_MECHANISM"),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/spnego/NegTokenTarg.java

        }
    
        /**
         * Gets the selected authentication mechanism OID
         * @return the mechanism OID
         */
        public ASN1ObjectIdentifier getMechanism() {
            return this.mechanism;
        }
    
        /**
         * Sets the selected authentication mechanism OID
         * @param mechanism the mechanism OID to set
         */
        public void setMechanism(final ASN1ObjectIdentifier mechanism) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/spnego/SpnegoConstants.java

     */
    public interface SpnegoConstants {
    
        /**
         * OID for the SPNEGO mechanism
         */
        String SPNEGO_MECHANISM = "1.3.6.1.5.5.2";
    
        /**
         * OID for the Kerberos v5 mechanism
         */
        String KERBEROS_MECHANISM = "1.2.840.113554.1.2.2";
    
        /**
         * OID for the legacy Kerberos v5 mechanism
         */
        String LEGACY_KERBEROS_MECHANISM = "1.2.840.48018.1.2.2";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SSPContext.java

         * @param mechanism the security mechanism OID to check
         * @return whether the specified mechanism is supported
         */
        boolean isSupported(ASN1ObjectIdentifier mechanism);
    
        /**
         * Checks whether the specified mechanism is the preferred mechanism.
         * @param selectedMech the selected mechanism OID
         * @return whether the specified mechanism is preferred
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

     */
    package jcifs.pac.kerberos;
    
    /**
     * Constants used in Kerberos protocol implementation.
     */
    public interface KerberosConstants {
    
        /** Kerberos OID identifier */
        String KERBEROS_OID = "1.2.840.113554.1.2.2";
        /** Kerberos protocol version */
        String KERBEROS_VERSION = "5";
    
        /** Kerberos AP-REQ message type */
        String KERBEROS_AP_REQ = "14";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. schema/index_test.go

    		},
    		{
    			Name:   "idx_id",
    			Fields: []schema.IndexOption{{Field: &schema.Field{Name: "MemberNumber"}}, {Field: &schema.Field{Name: "OID", UniqueIndex: "idx_oid"}}},
    		},
    		{
    			Name:   "idx_oid",
    			Class:  "UNIQUE",
    			Fields: []schema.IndexOption{{Field: &schema.Field{Name: "OID", UniqueIndex: "idx_oid"}}},
    		},
    		{
    			Name:   "type",
    			Type:   "",
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Dec 06 02:27:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

        return result
      }
    }
    
    internal data class AlgorithmIdentifier(
      /** An OID string like "1.2.840.113549.1.1.11" for sha256WithRSAEncryption. */
      val algorithm: String,
      /** Parameters of a type implied by [algorithm]. */
      val parameters: Any?,
    )
    
    internal data class AttributeTypeAndValue(
      /** An OID string like "2.5.4.11" for organizationalUnitName. */
      val type: String,
      val value: Any?,
    )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top