Popularity
1.3
Declining
Activity
4.4
-
2
2
0

Monthly Downloads: 16
Programming language: Haskell
License: MIT License
Tags: Cryptography    

fpe alternatives and similar packages

Based on the "Cryptography" category.
Alternatively, view fpe alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of fpe or a related project?

Add another 'Cryptography' Package

README

Hackage Build Status

Format-preserving encryption encrypts data without changing its format. An example is encrypting a 16-digit credit card number as 16 digits. The encryption uses a key, which is secret, and an optional tweak, which can be public and varies for each record (such as the cardholder's name), and provides extra security.

This module implements FF1. Another similar algorithm, FF3, is no longer considered secure, and so is not included (yet).

For example usage, see ff1test.hs.