Home
last modified time | relevance | path

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

/external/rust/crates/ring/src/aead/
Daes_gcm.rs28 max_input_len: AES_GCM_MAX_INPUT_LEN,
38 max_input_len: AES_GCM_MAX_INPUT_LEN,
277 const AES_GCM_MAX_INPUT_LEN: u64 = super::max_input_len(BLOCK_LEN, 2);
293 super::AES_128_GCM.max_input_len * 8, in max_input_len_test()
297 super::AES_256_GCM.max_input_len * 8, in max_input_len_test()
Dchacha20_poly1305.rs34 max_input_len: super::max_input_len(64, 1),
151 assert_eq!(super::CHACHA20_POLY1305.max_input_len, 274_877_906_880u64); in max_input_len_test()
/external/rust/crates/ring/src/
Daead.rs586 max_input_len: u64, field
589 const fn max_input_len(block_len: usize, overhead_blocks_per_nonce: usize) -> u64 { in max_input_len() function
655 if polyfill::u64_from_usize(in_out_len) > alg.max_input_len { in check_per_nonce_max_bytes()