|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2005, 2024, 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
|
|
24 | 24 | /**
|
25 | 25 | * @test
|
26 | 26 | * @bug 4635230 6283345 6303830 6824440 6867348 7094155 8038184 8038349 8046949
|
27 |
| - * 8046724 8079693 8177334 8205507 8210736 8217878 8241306 8305972 |
| 27 | + * 8046724 8079693 8177334 8205507 8210736 8217878 8241306 8305972 8344137 |
28 | 28 | * @summary Basic unit tests for generating XML Signatures with JSR 105
|
29 | 29 | * @modules java.base/sun.security.util
|
30 | 30 | * java.base/sun.security.x509
|
@@ -99,6 +99,7 @@ public class GenerationTests {
|
99 | 99 | private static SignatureMethod dsaSha1, dsaSha256,
|
100 | 100 | rsaSha1, rsaSha224, rsaSha256, rsaSha384, rsaSha512,
|
101 | 101 | ecdsaSha1, ecdsaSha224, ecdsaSha256, ecdsaSha384, ecdsaSha512,
|
| 102 | + ecdsaSha3_224, ecdsaSha3_256, ecdsaSha3_384, ecdsaSha3_512, |
102 | 103 | hmacSha1, hmacSha224, hmacSha256, hmacSha384, hmacSha512,
|
103 | 104 | rsaSha1mgf1, rsaSha224mgf1, rsaSha256mgf1, rsaSha384mgf1, rsaSha512mgf1,
|
104 | 105 | rsaSha3_224mgf1, rsaSha3_256mgf1, rsaSha3_384mgf1, rsaSha3_512mgf1,
|
@@ -244,9 +245,9 @@ public class GenerationTests {
|
244 | 245 | })
|
245 | 246 | .toArray(String[]::new);
|
246 | 247 |
|
247 |
| - // As of JDK 22, the number of defined algorithms are... |
| 248 | + // As of JDK 25, the number of defined algorithms are... |
248 | 249 | static {
|
249 |
| - if (allSignatureMethods.length != 29 |
| 250 | + if (allSignatureMethods.length != 33 |
250 | 251 | || allDigestMethods.length != 9) {
|
251 | 252 | System.out.println(Arrays.toString(allSignatureMethods));
|
252 | 253 | System.out.println(Arrays.toString(allDigestMethods));
|
@@ -305,6 +306,10 @@ public static void main(String args[]) throws Exception {
|
305 | 306 | test_create_signature_enveloping_p256_sha256();
|
306 | 307 | test_create_signature_enveloping_p256_sha384();
|
307 | 308 | test_create_signature_enveloping_p256_sha512();
|
| 309 | + test_create_signature_enveloping_p256_sha3_224(); |
| 310 | + test_create_signature_enveloping_p256_sha3_256(); |
| 311 | + test_create_signature_enveloping_p256_sha3_384(); |
| 312 | + test_create_signature_enveloping_p256_sha3_512(); |
308 | 313 | test_create_signature_enveloping_p384_sha1();
|
309 | 314 | test_create_signature_enveloping_p521_sha1();
|
310 | 315 | test_create_signature_enveloping_ed25519();
|
@@ -559,6 +564,10 @@ private static void setup() throws Exception {
|
559 | 564 | ecdsaSha256 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA256, null);
|
560 | 565 | ecdsaSha384 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA384, null);
|
561 | 566 | ecdsaSha512 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA512, null);
|
| 567 | + ecdsaSha3_224 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA3_224, null); |
| 568 | + ecdsaSha3_256 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA3_256, null); |
| 569 | + ecdsaSha3_384 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA3_384, null); |
| 570 | + ecdsaSha3_512 = fac.newSignatureMethod(SignatureMethod.ECDSA_SHA3_512, null); |
562 | 571 |
|
563 | 572 | ed25519 = fac.newSignatureMethod(SignatureMethod.ED25519, null);
|
564 | 573 | ed448 = fac.newSignatureMethod(SignatureMethod.ED448, null);
|
@@ -892,6 +901,34 @@ static void test_create_signature_enveloping_p256_sha512() throws Exception {
|
892 | 901 | System.out.println();
|
893 | 902 | }
|
894 | 903 |
|
| 904 | + static void test_create_signature_enveloping_p256_sha3_224() throws Exception { |
| 905 | + System.out.println("* Generating signature-enveloping-p256-sha3_224.xml"); |
| 906 | + test_create_signature_enveloping(sha1, ecdsaSha3_224, p256ki, |
| 907 | + getECPrivateKey("P256"), kvks, false, true); |
| 908 | + System.out.println(); |
| 909 | + } |
| 910 | + |
| 911 | + static void test_create_signature_enveloping_p256_sha3_256() throws Exception { |
| 912 | + System.out.println("* Generating signature-enveloping-p256-sha3_256.xml"); |
| 913 | + test_create_signature_enveloping(sha1, ecdsaSha3_256, p256ki, |
| 914 | + getECPrivateKey("P256"), kvks, false, true); |
| 915 | + System.out.println(); |
| 916 | + } |
| 917 | + |
| 918 | + static void test_create_signature_enveloping_p256_sha3_384() throws Exception { |
| 919 | + System.out.println("* Generating signature-enveloping-p256-sha3_384.xml"); |
| 920 | + test_create_signature_enveloping(sha1, ecdsaSha3_384, p256ki, |
| 921 | + getECPrivateKey("P256"), kvks, false, true); |
| 922 | + System.out.println(); |
| 923 | + } |
| 924 | + |
| 925 | + static void test_create_signature_enveloping_p256_sha3_512() throws Exception { |
| 926 | + System.out.println("* Generating signature-enveloping-p256-sha3_512.xml"); |
| 927 | + test_create_signature_enveloping(sha1, ecdsaSha3_512, p256ki, |
| 928 | + getECPrivateKey("P256"), kvks, false, true); |
| 929 | + System.out.println(); |
| 930 | + } |
| 931 | + |
895 | 932 | static void test_create_signature_enveloping_p384_sha1() throws Exception {
|
896 | 933 | System.out.println("* Generating signature-enveloping-p384-sha1.xml");
|
897 | 934 | test_create_signature_enveloping(sha1, ecdsaSha1, p384ki,
|
|
0 commit comments