9 releases (breaking)

0.6.1 Apr 13, 2023
0.5.1 Oct 27, 2021
0.5.0 Jul 31, 2021
0.4.0 Jan 27, 2021
0.1.0 Jul 31, 2018

#333 in Cryptography

Download history 5730/week @ 2023-12-14 3158/week @ 2023-12-21 2640/week @ 2023-12-28 5325/week @ 2024-01-04 6771/week @ 2024-01-11 5847/week @ 2024-01-18 7241/week @ 2024-01-25 16294/week @ 2024-02-01 6920/week @ 2024-02-08 8604/week @ 2024-02-15 7172/week @ 2024-02-22 7925/week @ 2024-02-29 10912/week @ 2024-03-07 7741/week @ 2024-03-14 7088/week @ 2024-03-21 4292/week @ 2024-03-28

31,131 downloads per month
Used in 26 crates (5 directly)

MIT/Apache

61KB
1K SLoC

fpe Crates.io

This crate contains pure-Rust implementations of format-preserving encryption algorithms.

The following algorithms are implemented:

This crate requires Rust version 1.56 or greater.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Format-preserving encryption algorithms.

Example

extern crate aes;
extern crate fpe;

use aes::Aes256;
use fpe::ff1::{BinaryNumeralString, FF1};

let key = [0; 32];
let radix = 2;
let pt = [0xab, 0xcd, 0xef];

let ff = FF1::<Aes256>::new(&key, radix).unwrap();
let ct = ff.encrypt(&[], &BinaryNumeralString::from_bytes_le(&pt)).unwrap();
assert_eq!(ct.to_bytes_le(), [0x75, 0xfb, 0x62]);

let p2 = ff.decrypt(&[], &ct).unwrap();
assert_eq!(p2.to_bytes_le(), pt);

Dependencies

~1MB
~20K SLoC