Home
last modified time | relevance | path

Searched defs:Nonce (Results 1 – 10 of 10) sorted by relevance

/external/rust/crates/ring/src/aead/
Dnonce.rs24 pub struct Nonce([u8; NONCE_LEN]); struct
26 impl Nonce { implementation
45 impl AsRef<[u8; NONCE_LEN]> for Nonce { implementation
Dless_safe_key.rs52 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_()
Dchacha20_poly1305.rs50 nonce: Nonce, in chacha20_poly1305_seal()
130 nonce: Nonce, in chacha20_poly1305_open()
Daes_gcm.rs68 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()
Dchacha.rs163 fn from_nonce_and_ctr(nonce: Nonce, ctr: u32) -> Self { in from_nonce_and_ctr()
/external/rust/crates/ring/tests/
Daead_tests.rs145 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/
DPassManagerInternal.h125 template <typename T> struct Nonce { using Type = EnabledType; }; struct
/external/cronet/url/
Dorigin.cc414 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/
Dmod.rs34 pub enum Nonce { enum
/external/rust/crates/ring/src/
Daead.rs54 fn advance(&mut self) -> Result<Nonce, error::Unspecified>; in advance()