We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458212c commit 3556096Copy full SHA for 3556096
src/net/i2p/crypto/eddsa/EdDSAEngine.java
@@ -86,14 +86,14 @@ public final class EdDSAEngine extends Signature {
86
private static class OneShotSpec implements AlgorithmParameterSpec {}
87
88
/**
89
- * No specific hash requested, allows any EdDSA key.
+ * No specific EdDSA-internal hash requested, allows any EdDSA key.
90
*/
91
public EdDSAEngine() {
92
- super("EdDSA");
+ super(SIGNATURE_ALGORITHM);
93
}
94
95
96
- * Specific hash requested, only matching keys will be allowed.
+ * Specific EdDSA-internal hash requested, only matching keys will be allowed.
97
* @param digest the hash algorithm that keys must have to sign or verify.
98
99
public EdDSAEngine(MessageDigest digest) {
0 commit comments