tiny-secp256k1
tiny-secp256k1 copied to clipboard
A tiny secp256k1 native/JS wrapper
Not sure if this is desirable and not really clear to me how tiny-secp256k1 is validating in other environments, but this resolves #136 for me. At some level though it...
I'm trying to use this to init bitcoinjs-lib. When running in a test (see #62) I get an error : `ecc library invalid`. Versions: ``` [email protected] [email protected] ``` When digging...
Hello, First off thank you for making this library. Secondly, we are having issues bundling this with Electron and Electron Builder. The issue is that during the bundling process the...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.8 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...
It's working locally, but when I try to deploy at Vercel and go to the homepage of the app I get a 500 error and this text in the the...
This splits up the rust portion into two crates: 1. Main library (no_std is optional) 2. WASM cdylib which uses 1 This will allow others to make use of the...
Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. Changelog Sourced from browserify-sign's changelog. v4.2.2 - 2023-10-25 Fixed [Tests] log when openssl doesn't support cipher [#37](https://github.com/crypto-browserify/browserify-sign/issues/37) Commits Only apps should have lockfiles 09a8995...
I've faced with the speed regression between version 2.2.2 and 2.2.3 for `pointFromScalar` method. Simple test: ```js import * as secp256k1 from 'tiny-secp256k1'; import crypto from 'crypto'; const bufs =...
Fixes #123 @mahnunchik Please test to see if there are any other regressions.
Currently the `WebAssembly` part is loaded synchronously: ``` const mod = new WebAssembly.Module(binary); const instance = new WebAssembly.Instance(mod, imports); ``` This results in the following error: `WebAssembly.Compile` is disallowed on...