Reduce number of key generation iterations to 100

This commit is contained in:
Steve Soltys 2019-02-21 22:42:16 -05:00
parent 023750be6e
commit 0fd4c7833d

View file

@ -18,7 +18,7 @@ public class KeyGenerator {
/** /**
* The number of iterations for key generation. * The number of iterations for key generation.
*/ */
private static final int ITERATIONS = 1000; private static final int ITERATIONS = 100;
/** /**
* The generated key length. * The generated key length.