Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
* implementation is a {@link java.security.SecureRandom SecureRandom} with the {@code SHA1PRNG} algorithm.
*
* @since 1.0
* @deprecated since 2.0. Use {@link JavaUuidSessionIdGenerator} instead. This class uses only 64 bits of entropy
* which is below modern industry minimums (128 bits per OWASP ASVS and NIST SP 800-63B) and poses
* a security risk if used in production.
*/
@Deprecated
public class RandomSessionIdGenerator implements SessionIdGenerator {

private static final Logger LOGGER = LoggerFactory.getLogger(RandomSessionIdGenerator.class);
Expand Down