2 releases

0.5.2 Apr 26, 2023
0.5.1 Jan 13, 2022

#1616 in Cryptography

Download history 282/week @ 2023-12-21 208/week @ 2023-12-28 652/week @ 2024-01-04 761/week @ 2024-01-11 1013/week @ 2024-01-18 778/week @ 2024-01-25 1220/week @ 2024-02-01 754/week @ 2024-02-08 515/week @ 2024-02-15 807/week @ 2024-02-22 1156/week @ 2024-02-29 1323/week @ 2024-03-07 1087/week @ 2024-03-14 998/week @ 2024-03-21 737/week @ 2024-03-28 1334/week @ 2024-04-04

4,295 downloads per month
Used in 2 crates (via cloudproof_fpe)

MIT/Apache

51KB
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