[![Build Status](https://github.com/mysto/clang-fpe/actions/workflows/c-cpp.yml/badge.svg)](https://github.com/mysto/clang-fpe/actions) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Mysto

# FPE - Format Preserving Encryption Implementation in C 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. * [NIST Recommendation SP 800-38G (FF3)](http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-38G.pdf) * [NIST Recommendation SP 800-38G Revision 1 (FF3-1)](https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-38Gr1-draft.pdf) ## Build and Run To compile the example.c with the fpe library, just run `make` To build on macOS: ```shell brew install openssl export CFLAGS="-I$(brew --prefix openssl)/include" export LDFLAGS="-L$(brew --prefix openssl)/lib" ``` Run the example in [example.c](https://github.com/0NG/Format-Preserving-Encryption/blob/master/example.c). ```shell ./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](http://csrc.nist.gov/groups/ST/toolkit/examples.html) for both FF1 and FF3 provided by NIST. You can run [test.py](https://github.com/0NG/Format-Preserving-Encryption/blob/master/test.py) with python 3.x. with a known test vector: ```shell make test ``` ## Example Usage 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. 1. Create and delete FF1 key and tweak ```c 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 | 2. encrypt or decrypt text using FF1 algorithm ```c 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 | 3. Create and delete FF3 key and tweak ```c 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 | 4. encrypt or decrypt text using FF3 algorithm ```c 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 | ## TODO 1. Performance testing 3. Custom alphabet support