You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both options below fail with the error - cannot create signer: no such algorithm: ML-DSA-65 for provider BCPQC on Bouncy castle v1.80
ContentSigner contentSigner = new JcaContentSignerBuilder("Dilithium3")
.setProvider("BCPQC")
.build(keyPair.getPrivate());
OR
ContentSigner contentSigner = new JcaContentSignerBuilder("ML-DSA-65")
.setProvider("BCPQC")
.build(keyPair.getPrivate());
The text was updated successfully, but these errors were encountered:
One workaround is to use the standard "BC" provider, which often has broader support for these algorithms. For example: ContentSigner contentSigner = new JcaContentSignerBuilder("ML-DSA-65") .setProvider("BC") .build(keyPair.getPrivate());
Let me know if this helps or if you need further assistance!
Both options below fail with the error -
cannot create signer: no such algorithm: ML-DSA-65 for provider BCPQC
on Bouncy castle v1.80The text was updated successfully, but these errors were encountered: