Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AKID (0.07 sec)

  1. src/crypto/x509/parser.go

    	}
    	val := cryptobyte.String(e.Value)
    	var akid cryptobyte.String
    	if !val.ReadASN1(&akid, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: invalid authority key identifier")
    	}
    	if akid.PeekASN1Tag(cryptobyte_asn1.Tag(0).ContextSpecific()) {
    		if !akid.ReadASN1(&akid, cryptobyte_asn1.Tag(0).ContextSpecific()) {
    			return nil, errors.New("x509: invalid authority key identifier")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    		currentTime: 1540000000,
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate relies on legacy Common Name field"),
    	},
    	{
    		// A certificate with an AKID should still chain to a parent without SKID.
    		// See Issue 30079.
    		name:        "AKIDNoSKID",
    		leaf:        leafWithAKID,
    		roots:       []string{rootWithoutSKID},
    		currentTime: 1550000000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	},
    	ErrCredMalformed: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "Error parsing the X-Amz-Credential parameter; the Credential is mal-formed; expecting \"<YOUR-AKID>/YYYYMMDD/REGION/SERVICE/aws4_request\".",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedDate: {
    		Code:           "MalformedDate",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top