We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i trying to test the script for a project. But i noted that after decryptation the string is not equal to the original.Why?
This is my code:
var bf = new Blowfish('text code'); var test = "test"; var ciphertext = bf.encrypt(test); var plaintext = bf.decrypt(ciphertext);
console.log(plaintext); alert(test === plaintext);
Thanks for help !
The text was updated successfully, but these errors were encountered:
Because of padding. Take a look at https://github.com/egoroof/blowfish
Sorry, something went wrong.
No branches or pull requests
Hi, i trying to test the script for a project. But i noted that after decryptation the string is not equal to the original.Why?
This is my code:
var bf = new Blowfish('text code');
var test = "test";
var ciphertext = bf.encrypt(test);
var plaintext = bf.decrypt(ciphertext);
Thanks for help !
The text was updated successfully, but these errors were encountered: