/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/tls/ |
D | auth_test.go | 20 SupportedSignatureAlgorithms: []SignatureScheme{PKCS1WithSHA1, PKCS1WithSHA256}, 33 peerSigAlgs []SignatureScheme 36 expectedSigAlg SignatureScheme 40 …{rsaCert, []SignatureScheme{PKCS1WithSHA1, PKCS1WithSHA256}, VersionTLS12, PKCS1WithSHA1, signatur… 41 …{rsaCert, []SignatureScheme{PKCS1WithSHA512, PKCS1WithSHA1}, VersionTLS12, PKCS1WithSHA512, signat… 42 …{rsaCert, []SignatureScheme{PSSWithSHA256, PKCS1WithSHA256}, VersionTLS12, PSSWithSHA256, signatur… 43 …{pkcs1Cert, []SignatureScheme{PSSWithSHA256, PKCS1WithSHA256}, VersionTLS12, PKCS1WithSHA256, sign… 44 …{rsaCert, []SignatureScheme{PSSWithSHA384, PKCS1WithSHA1}, VersionTLS13, PSSWithSHA384, signatureR… 45 …{ecdsaCert, []SignatureScheme{ECDSAWithSHA1}, VersionTLS12, ECDSAWithSHA1, signatureECDSA, crypto.… 46 …{ecdsaCert, []SignatureScheme{ECDSAWithP256AndSHA256}, VersionTLS12, ECDSAWithP256AndSHA256, signa… [all …]
|
D | auth.go | 98 func typeAndHashFromSignatureScheme(signatureAlgorithm SignatureScheme) (sigType uint8, hash crypto… argument 149 scheme SignatureScheme 173 func signatureSchemesForCertificate(version uint16, cert *Certificate) []SignatureScheme { 179 var sigAlgs []SignatureScheme 185 sigAlgs = []SignatureScheme{ 195 sigAlgs = []SignatureScheme{ECDSAWithP256AndSHA256} 197 sigAlgs = []SignatureScheme{ECDSAWithP384AndSHA384} 199 sigAlgs = []SignatureScheme{ECDSAWithP521AndSHA512} 205 sigAlgs = make([]SignatureScheme, 0, len(rsaSignatureSchemes)) 212 sigAlgs = []SignatureScheme{Ed25519} [all …]
|
D | common.go | 383 type SignatureScheme uint16 type 387 PKCS1WithSHA256 SignatureScheme = 0x0401 388 PKCS1WithSHA384 SignatureScheme = 0x0501 389 PKCS1WithSHA512 SignatureScheme = 0x0601 392 PSSWithSHA256 SignatureScheme = 0x0804 393 PSSWithSHA384 SignatureScheme = 0x0805 394 PSSWithSHA512 SignatureScheme = 0x0806 397 ECDSAWithP256AndSHA256 SignatureScheme = 0x0403 398 ECDSAWithP384AndSHA384 SignatureScheme = 0x0503 399 ECDSAWithP521AndSHA512 SignatureScheme = 0x0603 [all …]
|
D | tls_test.go | 1255 SupportedSignatureAlgorithms: []SignatureScheme{PKCS1WithSHA1, PKCS1WithSHA256}, 1274 SignatureSchemes: []SignatureScheme{PSSWithSHA256}, 1278 SignatureSchemes: []SignatureScheme{PSSWithSHA256, ECDSAWithP256AndSHA256}, 1283 SignatureSchemes: []SignatureScheme{PSSWithSHA256}, 1287 SignatureSchemes: []SignatureScheme{ECDSAWithP384AndSHA384}, 1291 SignatureSchemes: []SignatureScheme{PSSWithSHA256, ECDSAWithP256AndSHA256}, 1297 SignatureSchemes: []SignatureScheme{PKCS1WithSHA1}, 1302 SignatureSchemes: []SignatureScheme{PKCS1WithSHA1}, 1314 SignatureSchemes: []SignatureScheme{ECDSAWithP256AndSHA256}, 1321 SignatureSchemes: []SignatureScheme{ECDSAWithP384AndSHA384}, [all …]
|
D | handshake_messages.go | 84 supportedSignatureAlgorithms []SignatureScheme 85 supportedSignatureAlgorithmsCert []SignatureScheme 544 m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg)) 558 m.supportedSignatureAlgorithmsCert, SignatureScheme(sigAndAlg)) 1225 supportedSignatureAlgorithms []SignatureScheme 1226 supportedSignatureAlgorithmsCert []SignatureScheme 1326 m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg)) 1339 m.supportedSignatureAlgorithmsCert, SignatureScheme(sigAndAlg)) 1697 supportedSignatureAlgorithms []SignatureScheme 1787 m.supportedSignatureAlgorithms = make([]SignatureScheme, numSigAlgos) [all …]
|
D | defaults.go | 30 var defaultSupportedSignatureAlgorithms = []SignatureScheme{ 103 var defaultSupportedSignatureAlgorithmsFIPS = []SignatureScheme{
|
D | key_agreement.go | 205 var signatureAlgorithm SignatureScheme 324 signatureAlgorithm := SignatureScheme(sig[0])<<8 | SignatureScheme(sig[1])
|
D | handshake_client.go | 42 var testingOnlyForceClientHelloSignatureAlgorithms []SignatureScheme 1190 cri.SignatureSchemes = []SignatureScheme{ 1195 cri.SignatureSchemes = []SignatureScheme{ 1199 cri.SignatureSchemes = []SignatureScheme{ 1208 cri.SignatureSchemes = make([]SignatureScheme, 0, len(certReq.supportedSignatureAlgorithms))
|
D | common_string.go | 41 func (i SignatureScheme) String() string {
|
D | boring_test.go | 101 func isBoringSignatureScheme(alg SignatureScheme) bool { argument 216 testingOnlyForceClientHelloSignatureAlgorithms = []SignatureScheme{sigHash}
|
D | handshake_messages_test.go | 320 m.signatureAlgorithm = SignatureScheme(rand.Intn(30000))
|
D | handshake_server_tls13.go | 37 sigAlg SignatureScheme
|
/aosp_15_r20/prebuilts/go/linux-x86/api/ |
D | go1.8.txt | 6 pkg crypto/tls, const ECDSAWithP256AndSHA256 SignatureScheme 8 pkg crypto/tls, const ECDSAWithP384AndSHA384 SignatureScheme 10 pkg crypto/tls, const ECDSAWithP521AndSHA512 SignatureScheme 12 pkg crypto/tls, const PKCS1WithSHA1 SignatureScheme 14 pkg crypto/tls, const PKCS1WithSHA256 SignatureScheme 16 pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme 18 pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme 20 pkg crypto/tls, const PSSWithSHA256 SignatureScheme 22 pkg crypto/tls, const PSSWithSHA384 SignatureScheme 24 pkg crypto/tls, const PSSWithSHA512 SignatureScheme [all …]
|
D | go1.15.txt | 17 pkg crypto/tls, method (SignatureScheme) String() string
|
D | go1.10.txt | 19 pkg crypto/tls, const ECDSAWithSHA1 SignatureScheme
|
D | go1.13.txt | 20 pkg crypto/tls, const Ed25519 SignatureScheme
|
D | go1.14.txt | 10 pkg crypto/tls, type Certificate struct, SupportedSignatureAlgorithms []SignatureScheme
|
/aosp_15_r20/external/bazelbuild-rules_rust/examples/crate_universe/multi_package/sub_pkgs/pkg_b/src/ |
H A D | lib.rs | 9 use rustls::{Certificate, DistinguishedNames, Error, ServerConfig, SignatureScheme}; 116 pub offered_schemes: Option<Vec<SignatureScheme>>, 137 fn supported_verify_schemes(&self) -> Vec<SignatureScheme> { in supported_verify_schemes() argument
|