[go: up one dir, main page]

ctr 0.1.1

CTR block mode of operation
Documentation
1
2
3
4
5
6
7
8
9
10
#![no_std]
#![feature(test)]
#[macro_use]
extern crate stream_cipher;
extern crate aes;
extern crate ctr;

type Aes128Ctr = ctr::Ctr128<aes::Aes128>;

bench_fixed!(Aes128Ctr);