< prev index next >

test/sun/security/provider/DSA/TestAlgParameterGenerator.java

Print this page
rev 12543 : 8181048: Refactor existing providers to refer to the same constants for default values for key length
Reviewed-by: mullan, ahgross

*** 1,7 **** /* ! * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 21,31 **** * questions. */ /* * @test ! * @bug 7044060 * @summary verify that DSA parameter generation works * @run main/othervm/timeout=300 TestAlgParameterGenerator */ import java.security.*; import java.security.spec.*; --- 21,31 ---- * questions. */ /* * @test ! * @bug 7044060 8181048 * @summary verify that DSA parameter generation works * @run main/othervm/timeout=300 TestAlgParameterGenerator */ import java.security.*; import java.security.spec.*;
*** 76,86 **** // make sure no-init still works start = System.currentTimeMillis(); AlgorithmParameters param = apg.generateParameters(); stop = System.currentTimeMillis(); System.out.println("Time: " + (stop - start) + " ms."); - checkParamStrength(param, 1024); // make sure the old model works int[] strengths = { 512, 768, 1024 }; for (int i = 0; i < strengths.length; i++) { int sizeP = strengths[i]; --- 76,85 ----
< prev index next >