File: mod.rs

package info (click to toggle)
rust-ctr 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
//! Counter Mode with a 32-bit counter.
//!
//! NOTE: AES-128-CTR test vectors used by these tests were generated by first
//! integration testing the implementation in the contexts of AES-GCM and
//! AES-GCM-SIV, with the former tested against the NIST CAVS vectors, and the
//! latter against the RFC8452 test vectors.

mod be;
mod le;