Lines Matching defs:TestCase
83 struct TestCase { in test_hkdf() struct
84 ikm: &'static str, in test_hkdf()
85 salt: &'static str, in test_hkdf()
86 info: &'static str, in test_hkdf()
87 out_len: usize, in test_hkdf()
88 want: &'static str, in test_hkdf()
163 struct TestCase { in test_hmac() struct
164 digest: Digest, in test_hmac()
165 tag_size: usize, in test_hmac()
166 key: &'static [u8], in test_hmac()
167 data: &'static [u8], in test_hmac()
168 expected_mac: &'static str, in test_hmac()
387 struct TestCase { in test_aes_gcm() struct
388 key: &'static str, in test_aes_gcm()
389 iv: &'static str, in test_aes_gcm()
390 aad: &'static str, in test_aes_gcm()
391 msg: &'static str, in test_aes_gcm()
392 ct: &'static str, in test_aes_gcm()
393 tag: &'static str, in test_aes_gcm()
485 struct TestCase { in test_des() struct
486 key: &'static str, in test_des()
487 msg: &'static str, in test_des()
488 ct: &'static str, in test_des()
525 struct TestCase { in test_sha256() struct
526 msg: &'static [u8], in test_sha256()
527 want: &'static str, in test_sha256()