Socket for GitHub
Detect suspicious packages in PRs
Socket CLI
Use Socket from the command line
Socket Web Extension
Use Socket from your browser
Socket Dependency Search
Find any package for your project
Integrations
Docs
Want to read all the docs? Start here
Customers
Check out our customer stories
Blog
Keep up to date with all the news
Changelog
Latest updates and enhancements
FAQ
Answers to common questions
Package Alerts
Learn about all Socket alerts
Glossary
Open source and security terms
Customer Stories
About
Why we built Socket
Love
See why developers love Socket
Careers
Join our team
Investors
Learn about our investors
Security
Our security practices
Why Socket?
Achievements
Packages
Comaintainers
18 packages
Order
Sort by
simple-js-ecdsa
easy and light weight ecdsa implementation
simple-js-ec-math
basic elliptic curve math in javascript
simple-js-hash-store
how to import: ``` const HashStore = require('simple-js-hash-store') const hashStore = new HashStore('./data') ``` storing data ``` const reference = hashStore.save('test') ``` if memory encombered you can remove a specific item from memory using it's ref
simple-js-pedersen-commitment
easy and light weight pedersen commitment implementation
simple-js-schnorr
this project is intended as an easy to use schnorr signatures. (note: if you don't know what an elliptic curve is you can ignore all curve parameters)
simple-js-sha2
simple js sha2 implementation (includes 224bit, 256bit, 384bit, 512bit)
simple-js-sha2-224
how to import: ``` const sha2_224 = require('simple-js-sha2-224') ``` hashing: ``` sha2_224('hello') // ea09ae9cc6768c50fcee903ed054556e5bfc8347907f12598aa24193 ``` performance: 77.8 kh/s ~ (Core I7-7920HQ single thread)
simple-js-sha2-256
simple js sha2 (256bit) implementation
simple-js-sha2-384
how to import: ``` const sha2_384 = require('simple-js-sha2-384') ``` hashing: ``` sha2_384('hello') // 59e1748777448c69de6b800d7a33bbfb9ff1b463e44354c3553bcdb9c666fa90125a3c79f90397bdf5f6a13de828684f ```
simple-js-sha2-512
how to import: ``` const sha2_512 = require('simple-js-sha2-512') ``` hashing: ``` sha2_512('hello') // 9b71d224bd62f3785d96d46ad3ea3d73319bfbc2890caadae2dff72519673ca72323c3d99ba5c11d7c7acc6e14b8c5da0c4663475c2e5c3adef46f73bcdec043 ```