#crypto #encryption #radix #optimized #ff1 #binary #aes-256

no-std binary-ff1

Optimized Rust implementation of FF1 encryption with radix 2

2 unstable releases

0.2.0 Aug 1, 2021
0.1.0 Apr 9, 2020

#1145 in Cryptography

Download history 235/week @ 2023-12-09 70/week @ 2023-12-16 32/week @ 2023-12-30 59/week @ 2024-01-13 81/week @ 2024-01-20 246/week @ 2024-01-27 107/week @ 2024-02-03 106/week @ 2024-02-10 90/week @ 2024-02-17 133/week @ 2024-02-24 148/week @ 2024-03-02 138/week @ 2024-03-09 203/week @ 2024-03-16 77/week @ 2024-03-23

598 downloads per month

MIT/Apache

29KB
578 lines

binary-ff1

Optimized Rust implementation of FF1 encryption with radix 2, specified in NIST Special Publication 800-38G.


lib.rs:

Optimized Rust implementation of FF1 encryption with radix 2, specified in NIST Special Publication 800-38G.

Example

#
const KEY: [u8; 32] = [0; 32];
const LEN: usize = 3;

let cipher = Aes256::new(GenericArray::from_slice(&KEY));
let mut scratch = [0; LEN + 1];
let mut ff1 = BinaryFF1::new(&cipher, LEN, &[], &mut scratch).unwrap();

let mut x: [u8; LEN] = [0xAB, 0xCD, 0xEF];
ff1.encrypt(&mut x).unwrap();
assert_eq!(x, [0x75, 0xFB, 0x62]);
ff1.decrypt(&mut x).unwrap();
assert_eq!(x, [0xAB, 0xCD, 0xEF]);

Dependencies

~315KB