Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OIDFromInts (1.53 sec)

  1. src/crypto/x509/oid_test.go

    			t.Errorf("(%#v).toASN1OID() = (%v, true); want = (%v, true)", oid, o, asn1OID)
    		}
    
    		if v.ints != nil {
    			oid2, err := OIDFromInts(v.ints)
    			if err != nil {
    				t.Errorf("OIDFromInts(%v) = (%v, %v); want = (%v, nil)", v.ints, oid2, err, oid)
    			}
    			if !oid2.Equal(oid) {
    				t.Errorf("OIDFromInts(%v) = (%v, nil); want = (%v, nil)", v.ints, oid2, oid)
    			}
    		}
    	}
    }
    
    func TestInvalidOID(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/crypto/x509/oid.go

    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    		if v&0x80 == 0 {
    			start = i + 1
    		}
    	}
    
    	return OID{der}, true
    }
    
    // OIDFromInts creates a new OID using ints, each integer is a separate component.
    func OIDFromInts(oid []uint64) (OID, error) {
    	if len(oid) < 2 || oid[0] > 2 || (oid[0] < 2 && oid[1] >= 40) {
    		return OID{}, errInvalidOID
    	}
    
    	length := base128IntLength(oid[0]*40 + oid[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. api/go1.22.txt

    pkg archive/tar, method (*Writer) AddFS(fs.FS) error #58000
    pkg archive/zip, method (*Writer) AddFS(fs.FS) error #54898
    pkg cmp, func Or[$0 comparable](...$0) $0 #60204
    pkg crypto/x509, func OIDFromInts([]uint64) (OID, error) #60665
    pkg crypto/x509, method (*CertPool) AddCertWithConstraint(*Certificate, func([]*Certificate) error) #57178
    pkg crypto/x509, method (OID) Equal(OID) bool #60665
    pkg crypto/x509, method (OID) EqualASN1OID(asn1.ObjectIdentifier) bool #60665
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MarshalPKIXPublicKey", Func, 0},
    		{"NameConstraintsWithoutSANs", Const, 10},
    		{"NameMismatch", Const, 8},
    		{"NewCertPool", Func, 0},
    		{"NotAuthorizedToSign", Const, 0},
    		{"OID", Type, 22},
    		{"OIDFromInts", Func, 22},
    		{"PEMCipher", Type, 1},
    		{"PEMCipher3DES", Const, 1},
    		{"PEMCipherAES128", Const, 1},
    		{"PEMCipherAES192", Const, 1},
    		{"PEMCipherAES256", Const, 1},
    		{"PEMCipherDES", Const, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top