Home
last modified time | relevance | path

Searched refs:SignatureScheme (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/tls/
Dauth_test.go20 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 …]
Dauth.go98 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 …]
Dcommon.go383 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 …]
Dtls_test.go1255 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 …]
Dhandshake_messages.go84 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 …]
Ddefaults.go30 var defaultSupportedSignatureAlgorithms = []SignatureScheme{
103 var defaultSupportedSignatureAlgorithmsFIPS = []SignatureScheme{
Dkey_agreement.go205 var signatureAlgorithm SignatureScheme
324 signatureAlgorithm := SignatureScheme(sig[0])<<8 | SignatureScheme(sig[1])
Dhandshake_client.go42 var testingOnlyForceClientHelloSignatureAlgorithms []SignatureScheme
1190 cri.SignatureSchemes = []SignatureScheme{
1195 cri.SignatureSchemes = []SignatureScheme{
1199 cri.SignatureSchemes = []SignatureScheme{
1208 cri.SignatureSchemes = make([]SignatureScheme, 0, len(certReq.supportedSignatureAlgorithms))
Dcommon_string.go41 func (i SignatureScheme) String() string {
Dboring_test.go101 func isBoringSignatureScheme(alg SignatureScheme) bool { argument
216 testingOnlyForceClientHelloSignatureAlgorithms = []SignatureScheme{sigHash}
Dhandshake_messages_test.go320 m.signatureAlgorithm = SignatureScheme(rand.Intn(30000))
Dhandshake_server_tls13.go37 sigAlg SignatureScheme
/aosp_15_r20/prebuilts/go/linux-x86/api/
Dgo1.8.txt6 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 …]
Dgo1.15.txt17 pkg crypto/tls, method (SignatureScheme) String() string
Dgo1.10.txt19 pkg crypto/tls, const ECDSAWithSHA1 SignatureScheme
Dgo1.13.txt20 pkg crypto/tls, const Ed25519 SignatureScheme
Dgo1.14.txt10 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 Dlib.rs9 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