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
I was trying to encrypt a message with a lower security hmac.
With the SHA512 it just occupy so much space and i want to occupy less space for the message to be encrypted.
For a 6 char message i get a big encrypted message while this is to big for my database to handle.
I just want to use hmac SHA256 for this.
Is this the intended functionality for the encryption library ? Maybe i`m using something that i don't need to use.
The text was updated successfully, but these errors were encountered:
Or can we please have a variable that returns the hex instead of binary for the config encryption ?
Sorry, something went wrong.
Just add public $digest = 'SHA256'; to your Encryption config file.
public $digest = 'SHA256';
Hex for encryption config key - there is a PR underway that will solve this: #3397
No branches or pull requests
I was trying to encrypt a message with a lower security hmac.
With the SHA512 it just occupy so much space and i want to occupy less space for the message to be encrypted.
For a 6 char message i get a big encrypted message while this is to big for my database to handle.
I just want to use hmac SHA256 for this.
Is this the intended functionality for the encryption library ?
Maybe i`m using something that i don't need to use.
The text was updated successfully, but these errors were encountered: