| /external/rust/crates/ring/src/aead/ |
| D | nonce.rs | 24 pub struct Nonce([u8; NONCE_LEN]); struct 26 impl Nonce { impl 45 impl AsRef<[u8; NONCE_LEN]> for Nonce { implementation
|
| D | less_safe_key.rs | 52 nonce: Nonce, in open_in_place() 68 nonce: Nonce, in open_within() 92 nonce: Nonce, in seal_in_place_append_tag() 111 nonce: Nonce, in seal_in_place_separate_tag() 140 nonce: Nonce, in open_within_() 172 nonce: Nonce, in seal_in_place_separate_tag_()
|
| D | chacha20_poly1305.rs | 50 nonce: Nonce, in chacha20_poly1305_seal() 130 nonce: Nonce, in chacha20_poly1305_open()
|
| D | aes_gcm.rs | 68 fn aes_gcm_seal(key: &aead::KeyInner, nonce: Nonce, aad: Aad<&[u8]>, in_out: &mut [u8]) -> Tag { in aes_gcm_seal() 137 nonce: Nonce, in aes_gcm_open()
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_boringssl/src/aead/ |
| D | aes_gcm.rs | 36 type Nonce = [u8; 12]; typedef 47 nonce: &Self::Nonce, in encrypt_detached() 60 nonce: &Self::Nonce, in decrypt_detached() 77 type Nonce = [u8; 12]; typedef 88 nonce: &Self::Nonce, in encrypt_detached() 101 nonce: &Self::Nonce, in decrypt_detached()
|
| D | aes_gcm_siv.rs | 33 type Nonce = [u8; 12]; typedef 44 nonce: &Self::Nonce, in encrypt_detached() 57 nonce: &Self::Nonce, in decrypt_detached() 76 type Nonce = [u8; 12]; typedef 87 nonce: &Self::Nonce, in encrypt_detached() 100 nonce: &Self::Nonce, in decrypt_detached()
|
| /external/boringssl/src/rust/bssl-crypto/src/cipher/ |
| D | mod.rs | 40 type Nonce: AsRef<[u8]>; typedef 57 type Nonce: AsRef<[u8]>; typedef 79 type Nonce: AsRef<[u8]>; typedef 86 type Nonce = [u8; 16]; typedef 97 type Nonce = [u8; 16]; typedef 108 type Nonce = [u8; 16]; typedef 119 type Nonce = [u8; 16]; typedef 139 fn new(key: &C::Key, iv: &C::Nonce, purpose: CipherInitPurpose) -> Self { in new()
|
| D | aes_ctr.rs | 25 type Nonce = [u8; 16]; typedef 43 type Nonce = [u8; 16]; typedef
|
| D | aes_cbc.rs | 28 type Nonce = [u8; 16]; typedef 54 type Nonce = [u8; 16]; typedef
|
| /external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/cipher/ |
| D | mod.rs | 42 type Nonce: AsRef<[u8]>; typedef 59 type Nonce: AsRef<[u8]>; typedef 81 type Nonce: AsRef<[u8]>; typedef 88 type Nonce = [u8; 16]; typedef 99 type Nonce = [u8; 16]; typedef 110 type Nonce = [u8; 16]; typedef 121 type Nonce = [u8; 16]; typedef 141 fn new(key: &C::Key, iv: &C::Nonce, purpose: CipherInitPurpose) -> Self { in new()
|
| D | aes_ctr.rs | 25 type Nonce = [u8; 16]; typedef 43 type Nonce = [u8; 16]; typedef
|
| D | aes_cbc.rs | 28 type Nonce = [u8; 16]; typedef 54 type Nonce = [u8; 16]; typedef
|
| /external/boringssl/src/rust/bssl-crypto/src/ |
| D | aead.rs | 63 type Nonce: AsRef<[u8]>; typedef 68 fn seal(&self, nonce: &Self::Nonce, plaintext: &[u8], ad: &[u8]) -> Vec<u8>; in seal() 74 fn seal_in_place(&self, nonce: &Self::Nonce, plaintext: &mut [u8], ad: &[u8]) -> Self::Tag; in seal_in_place() 80 fn open(&self, nonce: &Self::Nonce, ciphertext: &[u8], ad: &[u8]) -> Option<Vec<u8>>; in open() 87 nonce: &Self::Nonce, in open_in_place() 290 A: Aead<Nonce = [u8; NONCE_LEN], Tag = [u8; TAG_LEN]>, in check_aead_invariants() 365 F: Fn(&[u8; KEY_LEN]) -> Box<dyn Aead<Nonce = [u8; NONCE_LEN], Tag = [u8; TAG_LEN]>>, in check_test_cases()
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider/src/ |
| D | aead.rs | 50 type Nonce: AsRef<[u8]>; typedef 67 nonce: &Self::Nonce, in encrypt_detached() 83 nonce: &Self::Nonce, in decrypt_detached()
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/aead/ |
| D | aes_gcm.rs | 53 type Nonce = [u8; 12]; typedef 67 nonce: &Self::Nonce, in encrypt_detached() 86 nonce: &Self::Nonce, in decrypt_detached()
|
| D | aes_gcm_siv.rs | 53 type Nonce = [u8; 12]; typedef 67 nonce: &Self::Nonce, in encrypt_detached() 86 nonce: &Self::Nonce, in decrypt_detached()
|
| /external/rust/crates/ring/tests/ |
| D | aead_tests.rs | 145 Seal: FnOnce(aead::Nonce, &mut Vec<u8>) -> Result<(), error::Unspecified>, in test_seal_append_tag() 163 Seal: Fn(aead::Nonce, &mut [u8]) -> Result<aead::Tag, error::Unspecified>, in test_seal_separate_tag() 179 for<'a> FnOnce(aead::Nonce, &'a mut [u8]) -> Result<&'a mut [u8], error::Unspecified>, in test_open_in_place() 198 OpenWithin: for<'a> Fn( in test_open_within() 519 nonce: aead::Nonce, in make_key() 542 fn advance(&mut self) -> Result<aead::Nonce, error::Unspecified> { in advance()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
| D | PassManagerInternal.h | 125 template <typename T> struct Nonce { using Type = EnabledType; }; struct
|
| /external/rust/beto-rust/nearby/connections/ukey2/ukey2_connections/src/ |
| D | crypto_utils.rs | 50 nonce: &A::Nonce, in encrypt_gcm_siv() 64 nonce: &A::Nonce, in decrypt_gcm_siv()
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/ |
| D | PassManagerInternal.h | 157 template <typename T> struct Nonce { using Type = EnabledType; }; argument
|
| /external/cronet/url/ |
| D | origin.cc | 423 Origin::Nonce::Nonce(const base::UnguessableToken& token) : token_(token) { in Nonce() function in url::Origin::Nonce 441 Origin::Nonce::Nonce(const Origin::Nonce& other) : token_(other.token()) {} in Nonce() function in url::Origin::Nonce 450 Origin::Nonce::Nonce(Origin::Nonce&& other) noexcept : token_(other.token_) { in Nonce() function in url::Origin::Nonce
|
| /external/rust/beto-rust/nearby/presence/np_adv/src/credential/metadata/ |
| D | mod.rs | 70 nonce: <C::Aes128Gcm as Aead>::Nonce, in decrypt_metadata_with_nonce()
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_stubs/src/ |
| D | lib.rs | 360 type Nonce = [u8; 12]; typedef 371 nonce: &Self::Nonce, in encrypt_detached() 384 nonce: &Self::Nonce, in decrypt_detached() 437 type Nonce = [u8; 12]; typedef 448 nonce: &Self::Nonce, in encrypt_detached() 461 nonce: &Self::Nonce, in decrypt_detached()
|
| /external/rust/beto-rust/nearby/presence/np_adv/src/credential/ |
| D | mod.rs | 86 ) -> <C::Aes128Gcm as Aead>::Nonce; in metadata_nonce_from_key_seed()
|
| /external/rust/beto-rust/nearby/presence/np_hkdf/src/ |
| D | lib.rs | 115 pub fn v0_metadata_nonce(&self) -> <C::Aes128Gcm as Aead>::Nonce { in v0_metadata_nonce() 123 pub fn v1_metadata_nonce(&self) -> <C::Aes128Gcm as Aead>::Nonce { in v1_metadata_nonce()
|