Searched defs:Nonce (Results 1 – 10 of 10) sorted by relevance
| /external/rust/crates/ring/src/aead/ |
| D | nonce.rs | 24 pub struct Nonce([u8; NONCE_LEN]); struct 26 impl Nonce { implementation 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()
|
| D | chacha.rs | 163 fn from_nonce_and_ctr(nonce: Nonce, ctr: u32) -> Self { in from_nonce_and_ctr()
|
| /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/cronet/url/ |
| D | origin.cc | 414 Origin::Nonce::Nonce(const base::UnguessableToken& token) : token_(token) { in Nonce() function in url::Origin::Nonce 432 Origin::Nonce::Nonce(const Origin::Nonce& other) : token_(other.token()) {} in Nonce() function in url::Origin::Nonce 441 Origin::Nonce::Nonce(Origin::Nonce&& other) noexcept : token_(other.token_) { in Nonce() function in url::Origin::Nonce
|
| /external/rust/crates/coset/src/context/ |
| D | mod.rs | 34 pub enum Nonce { enum
|
| /external/rust/crates/ring/src/ |
| D | aead.rs | 54 fn advance(&mut self) -> Result<Nonce, error::Unspecified>; in advance()
|