I have an 8 digit field that I would like to encrypt (I am not worried about decrypting it) into a 16 character (or more) field. I need this so I can use the encrypted field to send to a reporting agency.
|
|
Since you don't need decryption you could hash it (irreversibly) instead of using encryption. In PHP you could do this with hash and the Also, there are several other hash algorithms that will produce greater than 16 characters. You can use hash_algos to see what's available on your system. Here's a script to do that. |
|||||||||||||||
|
|
Without knowing too much about the purpose behind this "encryption" here's what I'd suggest (based on some conservative and security-preserving assumptions about what your goals are):
The benefit of this scheme is that as long as you remember the value Of course, this scheme assumes that you never need to perform a revese mapping, and the agency doesn't want to decrypt the identifiers. In other words, it assumes your goal is simply to not give the agency the identifier I but an equivalent identifier I'. |
|||||||||||
|