UNPKG

653 BMarkdownView Raw
1# Crypto
2The cryptographic primitives (ECDSA and HMAC) implementations in this package have been reviewed by the Open Wallet Stack engineering team. More audits and reviews are welcomed.
3
4## Point
5The `keyLib.crypto.Point` class contains a wrapper around the class Point of [elliptic.js](https://github.com/indutny/elliptic), the elliptic curve library.
6
7## ECDSA
8`keyLib.crypto.ECDSA` contains a pure JavaScript implementation of the elliptic curve DSA signature scheme based on [elliptic.js](https://github.com/indutny/elliptic).
9
10## Common Utilities
11See [OWS Common Crypto utilities](https://github.com/owstack/ows-common/blob/master/docs/crypto.md)