You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checked that there is not already provided the described functionality
Description
I have successfully used the library to Encrypt and Decrypt values. See below;
Raw Value=1234567890123456, Encrypted=5959499404198841, Decrypted=1234567890123456
Raw Value=MNEMONIC, Encrypted= XXZI9ob, Decrypted=MNEMONIC
Raw Value=SOMEVALU, Encrypted=TC6WQj21, Decrypted=SOMEVALU
Raw Value=SOM, Encrypted=qVI, Decrypted=SOM
Raw Value=SOME, Encrypted=mJry, Decrypted=SOME
Raw Value=SOMEV, Encrypted=j4b4f, Decrypted=SOMEV
As you can see my requirement is that user would be storing the encrypted values in thier database and they would want to search on these encrypted values using LIKE '%' but this won't work because it generates different value depending on the length of the string. Is there anyway I can restrict the library to generate the value to be as follows;
Raw Value=SOMEVALU, Encrypted=TC6WQj21, Decrypted=SOMEVALU
Raw Value=SOM, Encrypted=TC6, Decrypted=SOM
Raw Value=SOME, Encrypted=TC6W, Decrypted=SOME
Raw Value=SOMEV, Encrypted=TC6WQ, Decrypted=SOMEV
Or am I missing the whole point?
Versions
1.0.0
The text was updated successfully, but these errors were encountered:
Prerequisites
Description
I have successfully used the library to Encrypt and Decrypt values. See below;
As you can see my requirement is that user would be storing the encrypted values in thier database and they would want to search on these encrypted values using
LIKE '%'
but this won't work because it generates different value depending on the length of the string. Is there anyway I can restrict the library to generate the value to be as follows;Or am I missing the whole point?
Versions
1.0.0
The text was updated successfully, but these errors were encountered: