
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
This is a wasm version of mcl/ecdsa.h
serialize()
supports the format defined at BitCoin
npm test
const ecdsa = require('ecdsa-wasm')
// create secret key
const sec = new ecdsa.SecretKey()
// initialize sec
sec.setByCSPRNG()
// get public key
const pub = sec.getPublicKey()
// make signature
const sig = sec.sign("abc")
// verify signatpure by pub
> pub.verify(sig, "abc")
true
> pub.verify(sig, "abcd")
false
// create precomputed public key(faster than pub)
const ppub = new ecdsa.PrecomputedPublicKey()
// initialize ppub
ppub.init(pub)
// verify signature by ppub
> ppub.verify(sig, "abc")
true
> ppub.verify(sig, "abcd")
false
// destroy ppub if unnecessary
ppub.destroy()
SecretKey.serialize()
return 32-bytes Uint8Array as big-endianPublicKey.serialize()
return 65-bytes Uint8Array as 0x04 + x
+ y
PublicKey.serializeCompressed()
return 33-bytes Uint8Array as 0x02 (y is even) or 0x03 (y is odd) + x
Signature.serialize()
return DER-formatSecretKey.deserialize(a)
PublicKey.deserialize(a)
Signature.deserialize(a)
Uint8Array
of a
and constract the objectInstall emscripten.
git clone --recurse-submodules git@github.com:herumi/ecdsa-wasm
cd ecdsa-wasm
make -C src wasm
modified new BSD License http://opensource.org/licenses/BSD-3-Clause
光成滋生 MITSUNARI Shigeo(herumi@nifty.com)
FAQs
ecdsa/secp256k1 + SHA-256 for Node.js by WebAssembly
We found that ecdsa-wasm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.