Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SKID (0.03 sec)

  1. src/crypto/x509/parser.go

    					return errors.New("x509: subject key identifier incorrectly marked critical")
    				}
    				val := cryptobyte.String(e.Value)
    				var skid cryptobyte.String
    				if !val.ReadASN1(&skid, cryptobyte_asn1.OCTET_STRING) {
    					return errors.New("x509: invalid subject key identifier")
    				}
    				out.SubjectKeyId = skid
    			case 32:
    				out.Policies, err = parseCertificatePoliciesExtension(e.Value)
    				if err != nil {
    					return err
    				}
    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

    		expectedChains: [][]string{
    			{"Acme LLC", "Acme Co"},
    		},
    	},
    	{
    		// When there are two parents, one with an incorrect subject but matching SKID
    		// and one with a correct subject but missing SKID, the latter should be
    		// considered as a possible parent.
    		leaf:        leafMatchingAKIDMatchingIssuer,
    		roots:       []string{rootMatchingSKIDMismatchingSubject, rootMismatchingSKIDMatchingSubject},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top