1
1
/*
2
- * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2020, 2021, 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
@@ -74,18 +74,18 @@ public void beforeTest() throws Exception {
74
74
@ DataProvider (name = "eddsa" )
75
75
public Object [][] eddsaData () {
76
76
return new Object [][]{
77
- {"eddsa" , null , "ed25519" },
78
- {"eddsa" , "eddsa" , "ed25519" },
79
- {"eddsa" , "ed25519" , "ed25519" },
77
+ {"eddsa" , null , Ed25519 },
78
+ {"eddsa" , "eddsa" , Ed25519 },
79
+ {"eddsa" , "ed25519" , Ed25519 },
80
80
{"eddsa" , "ed448" , null },
81
- {"ed25519" , null , "ed25519" },
82
- {"ed25519" , "eddsa" , "ed25519" },
83
- {"ed25519" , "ed25519" , "ed25519" },
81
+ {"ed25519" , null , Ed25519 },
82
+ {"ed25519" , "eddsa" , Ed25519 },
83
+ {"ed25519" , "ed25519" , Ed25519 },
84
84
{"ed25519" , "ed448" , null },
85
- {"ed448" , null , "ed448" },
86
- {"ed448" , "eddsa" , "ed448" },
85
+ {"ed448" , null , Ed448 },
86
+ {"ed448" , "eddsa" , Ed448 },
87
87
{"ed448" , "ed25519" , null },
88
- {"ed448" , "ed448" , "ed448" },
88
+ {"ed448" , "ed448" , Ed448 },
89
89
};
90
90
}
91
91
@@ -96,7 +96,7 @@ public Object[][] eddsaData() {
96
96
* @param expected expected algorithm of generated signature
97
97
*/
98
98
@ Test (dataProvider = "eddsa" )
99
- public void eddsaTest (String keyAlg , String sigAlg , String expected )
99
+ public void eddsaTest (String keyAlg , String sigAlg , KnownOIDs expected )
100
100
throws Exception {
101
101
String alias = keyAlg + "-" + sigAlg ;
102
102
OutputAnalyzer oa = kt0 ("-genkeypair -alias " + alias
@@ -177,19 +177,22 @@ public void test(String alias, String keyAlg, String sigAlg, String ext,
177
177
sigAlg = SignatureUtil .getDefaultSigAlgForKey (pk );
178
178
}
179
179
180
+ KnownOIDs sigOID = KnownOIDs .findMatch (sigAlg );
181
+ KnownOIDs keyOID = KnownOIDs .findMatch (keyAlg );
182
+
180
183
byte [] crt = read (alias + ".self" );
181
- DerUtils .checkAlg (crt , "020" , sigAlg ); // tbsCertificate.signature
182
- DerUtils .checkAlg (crt , "0600" , keyAlg ); // tbsCertificate.subjectPublicKeyInfo.algorithm
184
+ DerUtils .checkAlg (crt , "020" , sigOID ); // tbsCertificate.signature
185
+ DerUtils .checkAlg (crt , "0600" , keyOID ); // tbsCertificate.subjectPublicKeyInfo.algorithm
183
186
assertEquals (
184
187
DerUtils .innerDerValue (crt , "02" ), // tbsCertificate.signature
185
188
DerUtils .innerDerValue (crt , "1" )); // signatureAlgorithm
186
189
187
190
byte [] req = read (alias + ".req" );
188
- DerUtils .checkAlg (req , "10" , sigAlg ); // signatureAlgorithm
189
- DerUtils .checkAlg (req , "0200" , keyAlg ); // certificationRequestInfo.subjectPKInfo.algorithm
191
+ DerUtils .checkAlg (req , "10" , sigOID ); // signatureAlgorithm
192
+ DerUtils .checkAlg (req , "0200" , keyOID ); // certificationRequestInfo.subjectPKInfo.algorithm
190
193
191
194
byte [] crl = read (alias + ".crl" );
192
- DerUtils .checkAlg (crl , "000" , sigAlg ); // tbsCertList.signature
195
+ DerUtils .checkAlg (crl , "000" , sigOID ); // tbsCertList.signature
193
196
assertEquals (
194
197
DerUtils .innerDerValue (crl , "00" ), // tbsCertList.signature
195
198
DerUtils .innerDerValue (crl , "1" )); // signatureAlgorithm
0 commit comments