I have 3 test keys — RSA, DSA and ECDSA. The RSA and DSA key-based signatures return true when verified. But the ECDSA-based signature always returns false (even when the signatures match).
The same code is used to verify all 3 test keys (apart from the differences in the provider object passed to Signature.getInstance()). My code is as follows:
Signature ecdsa = Signature.getInstance("SHA1withECDSA");
ecdsa.initSign(pk);
ecdsa.update(rawKeyBytes);
byte[] signatureBytes = ecdsa.sign();
Signature ecdsa3 = Signature.getInstance("SHA1WithECDSA");
ecdsa3.initVerify(puk);
ecdsa3.update(rawKeyBytes);
System.out.println("Verifying: "+ecdsa3.verify(signatureBytes));
The output of the program is always Verifying: false. When I change the provider to SHA1WithRSA and use an RSA key (using the same code above), the verification returns true, same with DSA-based keys. Someone mentioned it had something to do with the ECPoint passed to the ECPublicKeySpec() constructor, when trying to create a public key from the private key like this:
ECPrivateKey ec = (ECPrivateKey) privateKey;
ECPublicKeySpec ecKeySpec = new ECPublicKeySpec(
ec.getParams().getGenerator(),
ec.getParams()
);
Someone mentioned that signature verification (using the public key) would fail if a different ECPoint was used from the private key. But I actually get the ECPoint from the PrivateKey object (ec). Any solutions, please?