Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECDSAWithSHA512 (0.14 sec)

  1. src/crypto/x509/x509.go

    	SHA512WithRSA
    	DSAWithSHA1   // Unsupported.
    	DSAWithSHA256 // Unsupported.
    	ECDSAWithSHA1 // Only supported for signing, and verification of CRLs, CSRs, and OCSP responses.
    	ECDSAWithSHA256
    	ECDSAWithSHA384
    	ECDSAWithSHA512
    	SHA256WithRSAPSS
    	SHA384WithRSAPSS
    	SHA512WithRSAPSS
    	PureEd25519
    )
    
    func (algo SignatureAlgorithm) isRSAPSS() bool {
    	for _, details := range signatureAlgorithmDetails {
    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

    				KeyUsage: KeyUsageCRLSign,
    				Subject: pkix.Name{
    					CommonName: "testing",
    				},
    				SubjectKeyId: []byte{1, 2, 3},
    			},
    			template: &RevocationList{
    				SignatureAlgorithm: ECDSAWithSHA512,
    				RevokedCertificateEntries: []RevocationListEntry{
    					{
    						SerialNumber:   big.NewInt(2),
    						RevocationTime: time.Time{}.Add(time.Hour),
    					},
    				},
    				Number:     big.NewInt(5),
    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