Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for SupportedSignatureAlgorithms (0.44 sec)

  1. src/crypto/tls/common.go

    }
    
    // supportedSignatureAlgorithms returns the supported signature algorithms.
    func supportedSignatureAlgorithms() []SignatureScheme {
    	if !needFIPS() {
    		return defaultSupportedSignatureAlgorithms
    	}
    	return defaultSupportedSignatureAlgorithmsFIPS
    }
    
    func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/crypto/tls/boring_test.go

    		}
    	}
    	for _, id := range hello.supportedCurves {
    		if !isBoringCurve(id) {
    			t.Errorf("client offered disallowed curve %d", id)
    		}
    	}
    	for _, sigHash := range hello.supportedSignatureAlgorithms {
    		if !isBoringSignatureScheme(sigHash) {
    			t.Errorf("client offered disallowed signature-and-hash %v", sigHash)
    		}
    	}
    }
    
    func TestBoringCertAlgs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    		PrivateKey:  testRSAPrivateKey,
    	}
    	pkcs1Cert := &Certificate{
    		Certificate:                  [][]byte{testRSACertificate},
    		PrivateKey:                   testRSAPrivateKey,
    		SupportedSignatureAlgorithms: []SignatureScheme{PKCS1WithSHA1, PKCS1WithSHA256},
    	}
    	ecdsaCert := &Certificate{
    		// ECDSA P-256 certificate
    		Certificate: [][]byte{testP256Certificate},
    		PrivateKey:  testP256PrivateKey,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Certificate.Leaf", Field, 0},
    		{"Certificate.OCSPStaple", Field, 0},
    		{"Certificate.PrivateKey", Field, 0},
    		{"Certificate.SignedCertificateTimestamps", Field, 5},
    		{"Certificate.SupportedSignatureAlgorithms", Field, 14},
    		{"CertificateRequestInfo", Type, 8},
    		{"CertificateRequestInfo.AcceptableCAs", Field, 8},
    		{"CertificateRequestInfo.SignatureSchemes", Field, 8},
    		{"CertificateRequestInfo.Version", Field, 14},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg crypto/tls, method (*CertificateRequestInfo) SupportsCertificate(*Certificate) error
    pkg crypto/tls, method (*ClientHelloInfo) SupportsCertificate(*Certificate) error
    pkg crypto/tls, type Certificate struct, SupportedSignatureAlgorithms []SignatureScheme
    pkg crypto/tls, type CertificateRequestInfo struct, Version uint16
    pkg crypto/tls, type CipherSuite struct
    pkg crypto/tls, type CipherSuite struct, ID uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
Back to top