update salt size (#15758)

As part of becoming FIPS compliance, we are seeing this error: salt must be at least 128 bits when we run the Druid code against FIPS Compliant cryptographic security providers.
This PR fixes the salt size used in Pac4jSessionStore.java
This commit is contained in:
Parth Agrawal 2024-01-25 17:05:53 +05:30 committed by GitHub
parent 01e9d963bd
commit ed6df26a91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class Pac4jSessionStore<T extends WebContext> implements SessionStore<T>
"CBC",
"PKCS5Padding",
"PBKDF2WithHmacSHA256",
8,
128,
65536,
128
);