java-fpe icon indicating copy to clipboard operation
java-fpe copied to clipboard

FPE - Format Preserving Encryption with FF3 in Java

Results 2 java-fpe issues
Sort by recently updated
recently updated
newest added

The Mysto FPE library familiy are using String internally and in the method signatures. It would probably be a big change or addition to these contracts, but would you consider...

enhancement

Hi! It seems that the default base62 alphabet is defined differently across of languages: Java implementation: `0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz` Ref: https://github.com/mysto/java-fpe/blob/main/src/main/java/com/privacylogistics/FF3Cipher.java#L515 Python implementation: `0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ` Ref: https://github.com/mysto/python-fpe/blob/main/ff3/ff3.py#L75 This will lead to inconsistent results...