Reduce number of key generation iterations to 25

This commit is contained in:
Steve Soltys 2019-02-22 01:00:08 -05:00
parent b0465f7aae
commit 1519580a36

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 = 100; private static final int ITERATIONS = 25;
/** /**
* The generated key length. * The generated key length.