File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -607,7 +607,6 @@ sun/security/pkcs11/rsa/TestSignatures.java 8295343 linux-al
607
607
sun/security/pkcs11/rsa/TestKeyPairGenerator.java 8295343 linux-all
608
608
sun/security/pkcs11/rsa/TestKeyFactory.java 8295343 linux-all
609
609
sun/security/pkcs11/KeyStore/Basic.java 8295343 linux-all
610
- sun/security/pkcs/pkcs7/SignerOrder.java 8314240 generic-all
611
610
612
611
############################################################################
613
612
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2015, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2015, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -102,10 +102,10 @@ public static void main(String[] argv) throws Exception {
102
102
printSignerInfos (pkcs72 .getSignerInfos ());
103
103
104
104
System .out .println ("Verified signers of original:" );
105
- SignerInfo [] verifs1 = pkcs71 .verify ();
105
+ SignerInfo [] verifs1 = pkcs71 .verify (null );
106
106
107
107
System .out .println ("Verified signers of after read-in:" );
108
- SignerInfo [] verifs2 = pkcs72 .verify ();
108
+ SignerInfo [] verifs2 = pkcs72 .verify (null );
109
109
110
110
if (verifs1 .length != verifs2 .length ) {
111
111
throw new RuntimeException ("Length or Original vs read-in "
You can’t perform that action at this time.
0 commit comments