/* * Copyright (c) 2015, 2020, 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. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/** * @test * @bug 8056174 8242260 * @summary Make sure the jarsigner tool still works after it's modified to * be based on JarSigner API * @library /test/lib * @modules java.base/sun.security.pkcs * java.base/sun.security.x509
*/
// Help boolean lastLineHasAltSigner = false; for (String line : SecurityTools.jarsigner("--help").asLines()) { if (line.contains("-altsigner")) {
lastLineHasAltSigner = true;
} else { if (lastLineHasAltSigner) {
Asserts.assertTrue(line.contains("deprecated and will be removed"));
}
lastLineHasAltSigner = false;
}
}
// Prepares raw file
Files.write(Path.of("a"), List.of("a"));
try (JarFile jf = new JarFile("new.jar")) {
JarEntry je = jf.getJarEntry("META-INF/OLALA.SF");
Objects.requireNonNull(je); // check -sigfile byte[] sf = null; // content of .SF try (InputStream is = jf.getInputStream(je)) {
sf = is.readAllBytes(); // save for later comparison
Attributes attrs = new Manifest(new ByteArrayInputStream(sf))
.getMainAttributes(); // check -digestalg if (!attrs.containsKey(new Attributes.Name( "SHA1-Digest-Manifest-Main-Attributes"))) { thrownew Exception("digestalg incorrect");
} // check -sectionsonly if (attrs.containsKey(new Attributes.Name( "SHA1-Digest-Manifest"))) { thrownew Exception("SF should not have file digest");
}
}
je = jf.getJarEntry("META-INF/OLALA.RSA"); try (InputStream is = jf.getInputStream(je)) {
PKCS7 p7 = new PKCS7(is.readAllBytes());
String alg = p7.getSignerInfos()[0]
.getDigestAlgorithmId().getName(); if (!alg.equals("SHA-224")) { // check -sigalg thrownew Exception("PKCS7 signing is using " + alg);
} // check -internalsf if (!Arrays.equals(sf, p7.getContentInfo().getData())) { thrownew Exception("SF not in RSA");
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.