Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestPlatformVerifier (0.14 sec)

  1. src/crypto/x509/platform_test.go

    // authentication in the properties pane of the certificate in the
    // "Certificates" snap-in of mmc.exe.
    
    const (
    	rootCertPath = "platform_root_cert.pem"
    	rootKeyPath  = "platform_root_key.pem"
    )
    
    func TestPlatformVerifier(t *testing.T) {
    	if runtime.GOOS != "windows" && runtime.GOOS != "darwin" {
    		t.Skip("only tested on windows and darwin")
    	}
    
    	der, err := os.ReadFile(rootCertPath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top