Home
last modified time | relevance | path

Searched refs:SealingKey (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/ring/src/aead/
Dchacha20_poly1305_openssh.rs41 pub struct SealingKey { struct
45 impl SealingKey { implementation
47 pub fn new(key_material: &[u8; KEY_LEN]) -> SealingKey { in new() argument
48 SealingKey {
/external/rust/crates/ring/src/
Daead.rs243 pub struct SealingKey<N: NonceSequence> { struct
248 impl<N: NonceSequence> BoundKey<N> for SealingKey<N> { implementation
262 impl<N: NonceSequence> core::fmt::Debug for SealingKey<N> { implementation
270 impl<N: NonceSequence> SealingKey<N> { impl
/external/rust/crates/ring/tests/
Daead_tests.rs264 let mut s_key: aead::SealingKey<OneNonceSequence> = make_key(algorithm, key, nonce); in seal_with_key()
385 let s_key = aead::chacha20_poly1305_openssh::SealingKey::new(&key_bytes); in aead_chacha20_poly1305_openssh()
422 let sealing_key: aead::SealingKey<OneNonceSequence> = make_key( in test_aead_key_debug()