Home
last modified time | relevance | path

Searched refs:nonce_sequence (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/ring/src/
Daead.rs57 fn new(key: UnboundKey, nonce_sequence: N) -> Self; in new()
70 nonce_sequence: N, field
74 fn new(key: UnboundKey, nonce_sequence: N) -> Self { in new()
77 nonce_sequence, in new()
174 self.nonce_sequence.advance()?, in open_within()
245 nonce_sequence: N, field
249 fn new(key: UnboundKey, nonce_sequence: N) -> Self { in new()
252 nonce_sequence, in new()
331 self.nonce_sequence.advance()?, in seal_in_place_separate_tag()
/external/rust/crates/ring/tests/
Daead_tests.rs455 let nonce_sequence = OneNonceSequence::new(nonce); in make_key() localVariable
456 K::new(key, nonce_sequence) in make_key()