We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e399ce commit c55d804Copy full SHA for c55d804
standalone/src/main/java/cz/crcs/ectester/standalone/libs/WolfCryptLib.java
@@ -25,4 +25,16 @@ public boolean initialize() {
25
public Set<String> getCurves() {
26
return new HashSet<>();
27
}
28
+
29
+ @Override
30
+ public boolean supportsDeterministicPRNG() {
31
+ return true;
32
+ }
33
34
35
+ public boolean setupDeterministicPRNG(byte[] seed) {
36
+ // This is done by passing the SecureRandom into the individual KeyPairGenerator, KeyAgreement and Signature
37
+ // instances. Thus, this does nothing.
38
39
40
0 commit comments