You are viewing a single comment's thread from:
RE: Cryptography.ECDSA .NET lib v.2.0-2.1 from @steepshot team
Can you explain how the speed is increased? i don't quite understand the mechanism... @steepshot.
Can you explain how the speed is increased? i don't quite understand the mechanism... @steepshot.
Hi, there are several popular implementations of secp256k1:
The fastest implementation is https://github.com/bitcoin-core/secp256k1/. This is achieved by the fact that the low-level library written on C using inline Assembly, Boolean logic, with minimum of method calls and memory allocate.
How can we use C code in C#: