Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DSAWithSHA1 (1.82 sec)

  1. src/crypto/x509/x509.go

    	MD5WithRSA  // Only supported for signing, not verification.
    	SHA1WithRSA // Only supported for signing, and verification of CRLs, CSRs, and OCSP responses.
    	SHA256WithRSA
    	SHA384WithRSA
    	SHA512WithRSA
    	DSAWithSHA1   // Unsupported.
    	DSAWithSHA256 // Unsupported.
    	ECDSAWithSHA1 // Only supported for signing, and verification of CRLs, CSRs, and OCSP responses.
    	ECDSAWithSHA256
    	ECDSAWithSHA384
    	ECDSAWithSHA512
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	cert, err := ParseCertificate(pemBlock.Bytes)
    	if err != nil {
    		t.Fatalf("Failed to parse certificate: %s", err)
    	}
    	if cert.SignatureAlgorithm != DSAWithSHA1 {
    		t.Errorf("Parsed signature algorithm was not DSAWithSHA1")
    	}
    }
    
    func TestVerifyCertificateWithDSASignature(t *testing.T) {
    	pemBlock, _ := pem.Decode([]byte(dsaCertPem))
    	cert, err := ParseCertificate(pemBlock.Bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ConstraintViolationError", Type, 0},
    		{"CreateCertificate", Func, 0},
    		{"CreateCertificateRequest", Func, 3},
    		{"CreateRevocationList", Func, 15},
    		{"DSA", Const, 0},
    		{"DSAWithSHA1", Const, 0},
    		{"DSAWithSHA256", Const, 0},
    		{"DecryptPEMBlock", Func, 1},
    		{"ECDSA", Const, 1},
    		{"ECDSAWithSHA1", Const, 1},
    		{"ECDSAWithSHA256", Const, 1},
    		{"ECDSAWithSHA384", Const, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top