We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28179e commit 86d6db6Copy full SHA for 86d6db6
2 files changed
src/main/java/com/wolfssl/provider/jce/WolfCryptUtil.java
@@ -54,6 +54,10 @@
54
*/
55
public class WolfCryptUtil {
56
57
+ /** Default WolfCryptUtil constructor. */
58
+ public WolfCryptUtil() {
59
+ }
60
+
61
/**
62
* Maximum size of the keystore buffer to mark. We try to set this
63
* high enough to handle any large keystore. Although there is no
src/main/java/com/wolfssl/wolfcrypt/Asn.java
@@ -30,6 +30,10 @@
30
31
public class Asn extends WolfObject {
32
33
+ /** Default Asn constructor. */
34
+ public Asn() {
35
36
37
/** Maximum encoded signature size */
38
public static final int MAX_ENCODED_SIG_SIZE = 512;
39
0 commit comments