Replies: 2 comments
-
What you say sounds reasonable and I hope laravel does it like that already. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I wanted to say, it is in the docs, but apparently it is not in the docs... The only way to know this is to test it out.... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If I implement key rotation in Laravel, as explained here, will Laravel automatically re-encrypt values with the new key if it can't decrypt them with the new key? If not, how can I implement this behavior?
This would be useful for me because I have a value in my database that is accessed very often. I don't want Laravel to try all keys every time I access this value. Instead, I want Laravel to try the keys once, decrypt the value with the matching key, and then re-encrypt the value with the main key.
Beta Was this translation helpful? Give feedback.
All reactions