Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UnhandledCriticalExtension (0.18 sec)

  1. src/crypto/x509/verify_test.go

    		t.Fatalf("error was not a NotAuthorizedToSign: %v", err)
    	}
    }
    
    func expectUnhandledCriticalExtension(t *testing.T, err error) {
    	if _, ok := err.(UnhandledCriticalExtension); !ok {
    		t.Fatalf("error was not an UnhandledCriticalExtension: %v", err)
    	}
    }
    
    func certificateFromPEM(pemBytes string) (*Certificate, error) {
    	block, _ := pem.Decode([]byte(pemBytes))
    	if block == nil {
    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