Skip to content

Commit 5579708

Browse files
committed
Fix missing SHA1PRNG bean definition in WebSecurityConfig
1 parent e605644 commit 5579708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ubc/pavlab/rdp/WebSecurityConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ protected void configure( HttpSecurity http ) throws Exception {
108108

109109
@Bean
110110
public SecureRandom secureRandom() throws NoSuchAlgorithmException {
111-
return SecureRandom.getInstanceStrong();
111+
return SecureRandom.getInstance( "SHA1PRNG" );
112112
}
113113
}

0 commit comments

Comments
 (0)