File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 11libsecp256k1
22============
33
4- Optimized C library for EC operations on curve secp256k1
4+ Optimized C library for EC operations on curve secp256k1.
55
66This library is experimental, so use at your own risk.
77
8+ Features:
9+ * Low-level field and group operations on secp256k1.
10+ * ECDSA signing/verification and key generation.
11+ * Adding/multiplying private/public keys.
12+ * Serialization/parsing of private keys, public keys, signatures.
13+ * Very efficient implementation.
14+
815Implementation details
916----------------------
1017
@@ -27,3 +34,4 @@ Implementation details
2734* Point multiplication for signing
2835 * Use a precomputed table of multiples of powers of 16 multiplied with the generator, so general multiplication becomes a series of additions.
2936 * Slice the precomputed table in memory per byte, so memory access to the table becomes uniform.
37+ * Not fully constant-time.
You can’t perform that action at this time.
0 commit comments