File tree Expand file tree Collapse file tree
src/main/java/com/wolfssl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5454 */
5555public class WolfCryptUtil {
5656
57+ /** Default WolfCryptUtil constructor. */
58+ public WolfCryptUtil () {
59+ }
60+
5761 /**
5862 * Maximum size of the keystore buffer to mark. We try to set this
5963 * high enough to handle any large keystore. Although there is no
@@ -75,8 +79,7 @@ public class WolfCryptUtil {
7579 * @param msg message to be logged
7680 */
7781 private static synchronized void log (String msg ) {
78- WolfCryptDebug .log (WolfCryptUtil .class , WolfCryptDebug .INFO ,
79- () -> msg );
82+ WolfCryptDebug .log (WolfCryptUtil .class , WolfCryptDebug .INFO , () -> msg );
8083 }
8184
8285 /**
Original file line number Diff line number Diff line change 3030 */
3131public class Asn extends WolfObject {
3232
33+ /** Default Asn constructor. */
34+ public Asn () {
35+ }
36+
3337 /** Maximum encoded signature size */
3438 public static final int MAX_ENCODED_SIG_SIZE = 512 ;
3539
You can’t perform that action at this time.
0 commit comments