Home
last modified time | relevance | path

Searched refs:TAG_LEN (Results 1 – 14 of 14) sorted by relevance

/external/boringssl/src/crypto/cipher_extra/test/
Daes_256_cbc_sha1_tls_implicit_iv_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Ddes_ede3_cbc_sha1_tls_implicit_iv_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Daes_128_cbc_sha1_tls_implicit_iv_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Daes_256_cbc_sha384_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 48
29 TAG_LEN: 48
41 TAG_LEN: 48
53 TAG_LEN: 48
64 TAG_LEN: 48
75 TAG_LEN: 48
86 TAG_LEN: 48
97 TAG_LEN: 48
108 TAG_LEN: 48
[all …]
Daes_256_cbc_sha256_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 32
29 TAG_LEN: 32
41 TAG_LEN: 32
53 TAG_LEN: 32
64 TAG_LEN: 32
75 TAG_LEN: 32
86 TAG_LEN: 32
97 TAG_LEN: 32
108 TAG_LEN: 32
[all …]
Daes_128_cbc_sha1_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Daes_256_cbc_sha1_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Ddes_ede3_cbc_sha1_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 20
29 TAG_LEN: 20
41 TAG_LEN: 20
53 TAG_LEN: 20
64 TAG_LEN: 20
75 TAG_LEN: 20
86 TAG_LEN: 20
97 TAG_LEN: 20
108 TAG_LEN: 20
[all …]
Daes_128_cbc_sha256_tls_tests.txt6 # also include padding. We write the byte length of the MAC to 'TAG_LEN' and
18 TAG_LEN: 32
29 TAG_LEN: 32
41 TAG_LEN: 32
53 TAG_LEN: 32
64 TAG_LEN: 32
75 TAG_LEN: 32
86 TAG_LEN: 32
97 TAG_LEN: 32
108 TAG_LEN: 32
[all …]
/external/rust/crates/ring/src/aead/
Dchacha20_poly1305_openssh.rs64 tag_out: &mut [u8; TAG_LEN], in seal_in_place() argument
128 tag: &[u8; TAG_LEN], in open_in_place() argument
184 pub const TAG_LEN: usize = super::BLOCK_LEN; constant
186 fn verify(key: poly1305::Key, msg: &[u8], tag: &[u8; TAG_LEN]) -> Result<(), error::Unspecified> { in verify()
Dpoly1305.rs18 use super::{block::BLOCK_LEN, Tag, TAG_LEN};
111 let mut tag = Tag([0u8; TAG_LEN]); in finish()
115 (statep: &mut poly1305_state, mac: &mut [u8; TAG_LEN]) in finish()
Dquic.rs78 const SAMPLE_LEN: usize = super::TAG_LEN;
/external/rust/crates/ring/src/
Daead.rs203 .checked_sub(TAG_LEN) in open_within_()
608 TAG_LEN in tag_len()
638 pub struct Tag([u8; TAG_LEN]);
649 const TAG_LEN: usize = BLOCK_LEN; constant
652 pub const MAX_TAG_LEN: usize = TAG_LEN;
/external/rust/crates/ring/tests/
Daead_tests.rs383 let mut tag = [0u8; aead::chacha20_poly1305_openssh::TAG_LEN]; in aead_chacha20_poly1305_openssh()