Update documentation on curve oid workaround

This commit is contained in:
Paul Schaub 2022-04-07 20:21:07 +02:00
parent 73fa46895e
commit 361d2376f5
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 3 additions and 1 deletions

View File

@ -96,7 +96,9 @@ public class KeyInfo {
// Workaround for ECUtil not recognizing ed25519
// see https://github.com/bcgit/bc-java/issues/1087
// TODO: Remove once BC 1.71 gets released and contains a fix
// UPDATE: Apparently 1087 is not fixed properly with BC 1.71
// See https://github.com/bcgit/bc-java/issues/1142
// TODO: Remove when BC 1.72 comes out with a fix.
if (identifier.equals(GNUObjectIdentifiers.Ed25519)) {
return EdDSACurve._Ed25519.getName();
}