You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: API.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,14 @@
4
4
5
5
- Custom type for data output. It's possible pass Buffer or Object which inherits Uint8Array to function for data output. Of course length should match, or you can pass function which accept number of bytes and return instance with specified length.
6
6
7
-
- In place operations. Some functions doing in place operations. This done for less allocations, if you need new instance this can be easily done with creating it before pass to functions. For example:
7
+
- In place operations (follow [bitcoin-core/secp256k1](https://github.com/bitcoin-core/secp256k1) API):
8
+
9
+
-`privateKeyNegate`
10
+
-`privateKeyTweakAdd`
11
+
-`privateKeyTweakMul`
12
+
-`signatureNormalize`
13
+
14
+
If you need new instance this can be easily done with creating it before pass to functions. For example:
0 commit comments