Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for verifyActions (0.35 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UnknownSignatureAlgorithm", Const, 0},
    		{"VerifyOptions", Type, 0},
    		{"VerifyOptions.CurrentTime", Field, 0},
    		{"VerifyOptions.DNSName", Field, 0},
    		{"VerifyOptions.Intermediates", Field, 0},
    		{"VerifyOptions.KeyUsages", Field, 1},
    		{"VerifyOptions.MaxConstraintComparisions", Field, 10},
    		{"VerifyOptions.Roots", Field, 0},
    	},
    	"crypto/x509/pkix": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    			t.Errorf("#%d: calculated bit-length of %d for %x, wanted %d", i, got, test.bytes, test.bitLen)
    		}
    	}
    }
    
    func TestVerifyEmptyCertificate(t *testing.T) {
    	if _, err := new(Certificate).Verify(VerifyOptions{}); err != errNotParsed {
    		t.Errorf("Verifying empty certificate resulted in unexpected error: %q (wanted %q)", err, errNotParsed)
    	}
    }
    
    func TestInsecureAlgorithmErrorString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top