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
Authetication is working only if plain text passwords are used in yaml file.
Once a call is done to cipher this pass (curl http://user:PASS@localhost:8888/encrypt --data-urlencode PASS) there's no way to decipher that pass, pasting error message received when calling curl http://user:PASS@localhost:8888/decrypt --data-urlencode [result of previous call] :
javax.crypto.IllegalBlockSizeException: Data must not be longer than 256 bytes
The text was updated successfully, but these errors were encountered:
Also, generated key is too long, definitely longer than 256 chars.
Maybe a solution would be using a different algorithm for encryption (RSA only allows up to 256 bytes)
Sorry, something went wrong.
PereBueno
No branches or pull requests
Authetication is working only if plain text passwords are used in yaml file.
Once a call is done to cipher this pass (curl http://user:PASS@localhost:8888/encrypt --data-urlencode PASS) there's no way to decipher that pass, pasting error message received when calling curl http://user:PASS@localhost:8888/decrypt --data-urlencode [result of previous call] :
javax.crypto.IllegalBlockSizeException: Data must not be longer than 256 bytes
The text was updated successfully, but these errors were encountered: