1
1
/*
2
- * Copyright (c) 2009, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2009, 2022 , 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
@@ -80,9 +80,6 @@ abstract class ECDSASignature extends SignatureSpi {
80
80
// public key, if initialized for verifying
81
81
private ECPublicKey publicKey ;
82
82
83
- // signature parameters
84
- private ECParameterSpec sigParams = null ;
85
-
86
83
// The format. true for the IEEE P1363 format. false (default) for ASN.1
87
84
private final boolean p1363Format ;
88
85
@@ -347,10 +344,6 @@ public SHA3_512inP1363Format() {
347
344
protected void engineInitVerify (PublicKey publicKey )
348
345
throws InvalidKeyException {
349
346
ECPublicKey key = (ECPublicKey ) ECKeyFactory .toECKey (publicKey );
350
- if (!isCompatible (this .sigParams , key .getParams ())) {
351
- throw new InvalidKeyException ("Key params does not match signature params" );
352
- }
353
-
354
347
// Should check that the supplied key is appropriate for signature
355
348
// algorithm (e.g. P-256 for SHA256withECDSA)
356
349
this .publicKey = key ;
@@ -370,10 +363,6 @@ protected void engineInitSign(PrivateKey privateKey)
370
363
protected void engineInitSign (PrivateKey privateKey , SecureRandom random )
371
364
throws InvalidKeyException {
372
365
ECPrivateKey key = (ECPrivateKey ) ECKeyFactory .toECKey (privateKey );
373
- if (!isCompatible (this .sigParams , key .getParams ())) {
374
- throw new InvalidKeyException ("Key params does not match signature params" );
375
- }
376
-
377
366
ECUtil .checkPrivateKey (key );
378
367
// Should check that the supplied key is appropriate for signature
379
368
// algorithm (e.g. P-256 for SHA256withECDSA)
@@ -430,15 +419,6 @@ protected void engineUpdate(ByteBuffer byteBuffer) {
430
419
needsReset = true ;
431
420
}
432
421
433
- private static boolean isCompatible (ECParameterSpec sigParams ,
434
- ECParameterSpec keyParams ) {
435
- if (sigParams == null ) {
436
- // no restriction on key param
437
- return true ;
438
- }
439
- return ECUtil .equals (sigParams , keyParams );
440
- }
441
-
442
422
private byte [] signDigestImpl (ECDSAOperations ops , int seedBits ,
443
423
byte [] digest , ECPrivateKey priv , SecureRandom random )
444
424
throws SignatureException {
@@ -528,17 +508,21 @@ protected void engineSetParameter(String param, Object value)
528
508
529
509
@ Override
530
510
protected void engineSetParameter (AlgorithmParameterSpec params )
531
- throws InvalidAlgorithmParameterException {
532
- if (params != null && !(params instanceof ECParameterSpec )) {
533
- throw new InvalidAlgorithmParameterException ("No parameter accepted" );
511
+ throws InvalidAlgorithmParameterException {
512
+ // Interop: some certificates include parameters in an ECDSA
513
+ // algorithm identifier. We only accept one matching the key.
514
+ if (params == null ) {
515
+ return ;
516
+ }
517
+ if (!(params instanceof ECParameterSpec ecparams )) {
518
+ throw new InvalidAlgorithmParameterException (
519
+ "Parameters must be of type ECParameterSpec" );
534
520
}
535
521
ECKey key = (this .privateKey == null ? this .publicKey : this .privateKey );
536
- if ((key != null ) && !isCompatible (( ECParameterSpec ) params , key .getParams ())) {
522
+ if ((key != null ) && !ECUtil . equals ( ecparams , key .getParams ())) {
537
523
throw new InvalidAlgorithmParameterException
538
524
("Signature params does not match key params" );
539
525
}
540
-
541
- sigParams = (ECParameterSpec ) params ;
542
526
}
543
527
544
528
// get parameter, not supported. See JCA doc
@@ -551,16 +535,9 @@ protected Object engineGetParameter(String param)
551
535
552
536
@ Override
553
537
protected AlgorithmParameters engineGetParameters () {
554
- if (sigParams == null ) {
555
- return null ;
556
- }
557
- try {
558
- AlgorithmParameters ap = AlgorithmParameters .getInstance ("EC" );
559
- ap .init (sigParams );
560
- return ap ;
561
- } catch (Exception e ) {
562
- // should never happen
563
- throw new ProviderException ("Error retrieving EC parameters" , e );
564
- }
538
+ // Always return null even if setParameter is called before.
539
+ // According to RFC 3279 2.2.3 and RFC 5758 3.2, no parameters is
540
+ // defined for ECDSA AlgorithmIdentifiers.
541
+ return null ;
565
542
}
566
543
}
0 commit comments