< prev index next >

jdk/test/sun/security/tools/keytool/ReadJar.java

Print this page
rev 17251 : 8180888: move jdk.testlibrary.JarUtils to the top level testlibrary
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6890872 8168882
  27  * @summary keytool -printcert to recognize signed jar files
  28  * @library /test/lib
  29  * @library /lib/testlibrary
  30  */
  31 
  32 import java.nio.file.Files;
  33 import java.nio.file.Paths;
  34 import jdk.test.lib.SecurityTools;
  35 import jdk.test.lib.process.OutputAnalyzer;
  36 import jdk.testlibrary.JarUtils;
  37 
  38 public class ReadJar {
  39 
  40     public static void main(String[] args) throws Throwable {
  41         testWithMD5();
  42     }
  43 
  44     // make sure that -printcert option works
  45     // if a weak algorithm was used for signing a jar
  46     private static void testWithMD5() throws Throwable {
  47         // create jar files
  48         JarUtils.createJar("test_md5.jar", "test");
  49         JarUtils.createJar("test_rsa.jar", "test");
  50 
  51         // create a keystore and generate keys for jar signing
  52         Files.deleteIfExists(Paths.get("keystore"));
  53 
  54         OutputAnalyzer out = SecurityTools.keytool("-genkeypair "
  55                 + "-keystore keystore -storepass password "
  56                 + "-keypass password -keyalg rsa -alias rsa_alias -dname CN=A");




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6890872 8168882
  27  * @summary keytool -printcert to recognize signed jar files
  28  * @library /test/lib

  29  */
  30 
  31 import java.nio.file.Files;
  32 import java.nio.file.Paths;
  33 import jdk.test.lib.SecurityTools;
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.util.JarUtils;
  36 
  37 public class ReadJar {
  38 
  39     public static void main(String[] args) throws Throwable {
  40         testWithMD5();
  41     }
  42 
  43     // make sure that -printcert option works
  44     // if a weak algorithm was used for signing a jar
  45     private static void testWithMD5() throws Throwable {
  46         // create jar files
  47         JarUtils.createJar("test_md5.jar", "test");
  48         JarUtils.createJar("test_rsa.jar", "test");
  49 
  50         // create a keystore and generate keys for jar signing
  51         Files.deleteIfExists(Paths.get("keystore"));
  52 
  53         OutputAnalyzer out = SecurityTools.keytool("-genkeypair "
  54                 + "-keystore keystore -storepass password "
  55                 + "-keypass password -keyalg rsa -alias rsa_alias -dname CN=A");


< prev index next >