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
`Encryptors.queryableText(CharSequence,CharSequence)` is unsafe since https://tanzu.vmware.com/security/cve-2020-5408[the same input data will produce the same output].
2611
+
It was deprecated and will be removed in 6.0; Spring Security no longer supports encrypting data in this way.
2612
+
2613
+
To upgrade, you will either need to re-encrypt with a supported mechanism or store it decrypted.
2614
+
2615
+
Consider the following pseudocode for reading each encrypted entry from a table, decrypting it, and then re-encrypting it using a supported mechanism:
<1> - The above uses the deprecated `queryableText` to convert the value to plaintext.
2632
+
<2> - Then, the value is re-encrypted with a supported Spring Security mechanism.
2633
+
2634
+
Please see the reference manual for more information on what xref:features/integrations/cryptography.adoc[encryption mechanisms Spring Security supports].
2635
+
2608
2636
== Reactive
2609
2637
2610
2638
=== Use `AuthorizationManager` for Method Security
0 commit comments