An implementation of the NIST approved FF1, FF3 and FF3-1 Format Preserving Encryption (FPE) algorithms in Python.
This package implements the FPE algorithm for Format Preserving Encryption as described in the March 2016 NIST publication 800-38G Methods for Format-Preserving Encryption, and revised on February 28th, 2019 with a draft update for FF3-1.
To compile the example.c with the fpe library, just run
make
To build on macOS:
brew install openssl
export CFLAGS="-I$(brew --prefix openssl)/include"
export LDFLAGS="-L$(brew --prefix openssl)/lib"
Run the example in example.c.
./example EF4359D8D580AA4F7F036D6F04FC6A94 D8E7920AFA330A73 10 890121234567890000
plaintext: 890121234567890000
FF1 ciphertext: 318181603547192051
FF1 decrypted: 890121234567890000
FF3 ciphertext: 750918814058654607
FF3 decrypted: 890121234567890000
Run the tests
There are official test vectors for both FF1 and FF3 provided by NIST. You can run test.py with python 3.x. with a known test vector:
make test
This implementation is based on OpenSSL's BIGNUM and AES, so you need to install OpenSSL first.
There are several functions for FF1 and FF3 algorithm, respectively.
- Create and delete FF1 key and tweak
FPE_KEY* FPE_ff1_create_key(const char *key, const char *tweak, const unsigned int radix);
void FPE_ff1_delete_key(FPE_KEY *keystruct);
name | description |
---|---|
key | encryption key (128 bit, 192 bits or 256 bits), represented as a c string |
tweak | tweak, represented as a c string |
radix | number of characters in the given alphabet, it must be in [2, 2^16] |
returns | FPE_KEY structure |
- encrypt or decrypt text using FF1 algorithm
void FPE_ff1_encrypt(char *plaintext, char *ciphertext, FPE_KEY *keystruct)
void FPE_ff1_decrypt(char *ciphertext, char *plaintext, FPE_KEY *keystruct)
name | description |
---|---|
plaintext | numeral string to be encrypted, represented as an array of integers |
ciphertext | encrypted numeral string, represented as an array of integers |
keystruct | FPE_KEY structure that has been set with key and tweak |
- Create and delete FF3 key and tweak
FPE_KEY* FPE_ff3_create_key(const char *key, const char *tweak, const unsigned char radix);
FPE_KEY* FPE_ff3_1_create_key(const char *key, const char *tweak, const unsigned char radix);
void FPE_ff3_delete_key(FPE_KEY *keystruct);
name | description |
---|---|
key | encryption key (128 bit, 192 bits or 256 bits), represented as a c string |
tweak | tweak, represented as a c string (it must be 64 bytes) |
radix | number of characters in the given alphabet, it must be in [2, 2^16] |
returns | FPE_KEY structure |
- encrypt or decrypt text using FF3 algorithm
void FPE_ff3_encrypt(char *plaintext, char *ciphertext, FPE_KEY *keystruct);
void FPE_ff3_decrypt(char *ciphertext, char *plaintext, FPE_KEY *keystruct);
name | description |
---|---|
plaintext | numeral string to be encrypted, represented as an array of integers |
ciphertext | encrypted numeral string, represented as an array of integers |
radix | number of characters in the given alphabet, it must be in [2, 2^16] |
keystruct | FPE_KEY structure that has been set with key and tweak |
- Performance testing
- Custom alphabet support