File: aes128eax.rs

package info (click to toggle)
rust-eax 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
//! Test vectors from Appendix G:
//! https://web.cs.ucdavis.edu/~rogaway/papers/eax.pdf

use aes::Aes128;
use eax::Eax;

#[cfg(feature = "std")]
aead::new_test!(aes128eax, "aes128eax", Eax<Aes128>);