perlin-network / noise

A decentralized P2P networking stack written in Go.
https://godoc.org/github.com/perlin-network/noise
MIT License
1.79k stars 211 forks source link

Is there a reason for using oasislabs/ed25519 instead of crypto/ed25519? #295

Closed emad-elsaid closed 1 year ago

emad-elsaid commented 3 years ago

I see the project is using oasislabs/ed25519 package instead of the Go standard library. I checked the library reame and it seems the aim is to be faster. so is this the reason behind using it? because I was thinking limiting the dependency on third party packages can make this project stable on the long run.