bcgit / pc-dart

Pointy Castle - Dart Derived Bouncy Castle APIs
MIT License
237 stars 122 forks source link

Could you add Curve25519 sign algorithm? #139

Closed raqeta closed 1 year ago

raqeta commented 2 years ago

I found this implementation by k-s-t-i. It's works with Dart earlier version. Or I can create pull request later. Thanks :) https://github.com/k-s-t-i/curve25519-dart

soatok commented 2 years ago

Curve25519 is ECDH, not a signature algorithm.

You want Ed25519.

Ephenodrom commented 1 year ago

187