/external/rust/crates/openssl/src/ |
D | sha.rs | 296 pub struct Sha512(ffi::SHA512_CTX); 298 impl Default for Sha512 { 300 fn default() -> Sha512 { 301 Sha512::new() 305 impl Sha512 { impl 309 pub fn new() -> Sha512 { 313 Sha512(ctx.assume_init()) 458 let mut hasher = Sha512::new(); in struct_512()
|
/external/rust/beto-rust/nearby/crypto/crypto_provider_boringssl/src/ |
D | lib.rs | 26 use bssl_crypto::digest::{Sha256, Sha512}; 47 type HkdfSha512 = hkdf::Hkdf<Sha512>; 53 type Sha512 = Sha2Stubs; typedef
|
/external/rust/beto-rust/nearby/crypto/crypto_provider/src/ |
D | sha2.rs | 22 pub trait Sha512 { interface 34 use super::{Sha256, Sha512}; 76 sha_cavp_vector_test(<C::Sha512 as Sha512>::sha512, cavp_file_contents) in sha512_cavp_vector_test()
|
D | hmac.rs | 86 run_hmac_test_vectors::<64, C::HmacSha512>(HashAlg::Sha512) in hmac_sha512_test_vectors() 91 Sha512, enumerator 99 HashAlg::Sha512 => wycheproof::mac::TestName::HmacSha512, in run_hmac_test_vectors()
|
D | hkdf.rs | 269 run_hkdf_test_vectors::<C::HkdfSha512>(HashAlg::Sha512) in run_hkdf_sha512_vectors() 274 Sha512, enumerator 281 HashAlg::Sha512 => wycheproof::hkdf::TestName::HkdfSha512, in run_hkdf_test_vectors()
|
D | lib.rs | 65 type Sha512: sha2::Sha512; typedef
|
/external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/ |
D | lib.rs | 81 type HkdfSha512 = hkdf_rc::Hkdf<sha2::Sha512>; 82 type HmacSha512 = hmac_rc::Hmac<sha2::Sha512>; 88 type Sha512 = sha2_rc::RustCryptoSha512; typedef
|
D | sha2_rc.rs | 31 impl crypto_provider::sha2::Sha512 for RustCryptoSha512 { 33 let mut digest = sha2::Sha512::new();
|
/external/cronet/net/cert/pki/ |
D | signature_algorithm.cc | 263 if (hash == DigestAlgorithm::Sha512 && salt_length == 64) { in ParseRsaPss() 317 *out = DigestAlgorithm::Sha512; in ParseHashAlgorithm() 405 return DigestAlgorithm::Sha512; in GetTlsServerEndpointDigestAlgorithm() 415 return DigestAlgorithm::Sha512; in GetTlsServerEndpointDigestAlgorithm()
|
D | signature_algorithm.h | 28 Sha512, enumerator
|
/external/boringssl/src/rust/bssl-crypto/src/ |
D | digest.rs | 24 pub struct Sha512 {} struct 54 impl Md for Sha512 { implementation
|
D | hmac.rs | 16 digest::{Md, Sha256, Sha512}, 40 hmac::<64, Sha512>(key, data) 91 pub struct HmacSha512(Hmac<64, Sha512>);
|
D | hkdf.rs | 16 use crate::digest::{Sha256, Sha512}; 24 pub type HkdfSha512 = Hkdf<Sha512>;
|
/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/ |
D | digest.rs | 24 pub struct Sha512 {} struct 54 impl Md for Sha512 { implementation
|
D | hmac.rs | 16 digest::{Md, Sha256, Sha512}, 40 hmac::<64, Sha512>(key, data) 91 pub struct HmacSha512(Hmac<64, Sha512>);
|
D | hkdf.rs | 16 use crate::digest::{Sha256, Sha512}; 24 pub type HkdfSha512 = Hkdf<Sha512>;
|
/external/okio/okio/src/jvmTest/java/okio/ |
D | MessageDigestConsistencyTest.kt | 23 import okio.internal.Sha512 44 test("SHA-512") { Sha512() } in sha512()
|
/external/okio/okio/src/nonJvmMain/kotlin/okio/ |
D | HashingSink.kt | 23 import okio.internal.Sha512 77 actual fun sha512(sink: Sink) = HashingSink(sink, Sha512())
|
D | HashingSource.kt | 23 import okio.internal.Sha512 81 actual fun sha512(source: Source) = HashingSource(source, Sha512())
|
D | ByteString.kt | 24 import okio.internal.Sha512 81 actual fun sha512() = digest(Sha512()) in utf8()
|
/external/rust/beto-rust/nearby/connections/ukey2/ukey2/src/ |
D | ukey2_handshake.rs | 27 sha2::{Sha256, Sha512}, 300 let hash_bytes = C::Sha512::sha512(client_finished_msg_bytes); in handle_client_finished_msg() 406 C::Sha512::sha512(&curve25519_client_finished_bytes).to_vec(); in from() 428 let p256_client_finished_hash = C::Sha512::sha512(&p256_client_finished_bytes).to_vec(); in from()
|
D | tests.rs | 94 let mut hasher = sha2::Sha512::new(); in advance_from_init_to_complete_server_x25519_test() 152 let mut hasher = sha2::Sha512::new(); in advance_from_init_to_complete_server_p256_test()
|
/external/rust/beto-rust/nearby/crypto/crypto_provider_openssl/src/ |
D | sha2.rs | 60 impl crypto_provider::sha2::Sha512 for OpenSslSha512 {
|
/external/avb/test/ |
D | avb_crypto_ops_unittest.cc | 76 TEST(CryptoOpsTest, Sha512) { in TEST() argument
|
/external/okio/okio/src/hashFunctions/kotlin/okio/internal/ |
D | Hmac.kt | 49 create(key, hashFunction = Sha512(), blockLength = 128) in sha1()
|