Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waveto/node-crypto
A cryptographic module for node.js
https://github.com/waveto/node-crypto
Last synced: 18 days ago
JSON representation
A cryptographic module for node.js
- Host: GitHub
- URL: https://github.com/waveto/node-crypto
- Owner: waveto
- License: mit
- Created: 2009-11-22T01:57:52.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-03-24T21:29:12.000Z (over 14 years ago)
- Last Synced: 2024-07-31T22:53:55.065Z (3 months ago)
- Language: C++
- Homepage:
- Size: 119 KB
- Stars: 65
- Watchers: 5
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
node-crypto
===========A wrapper around openssl for node.js, currently exposing Hashing, Signing
and Verifying methods.Version 0.0.5 : test.js now uses mjsunit
Version 0.0.4 : Added package.json and updated tests to latest node version.
Version 0.0.3 : Added cipher / decipher, thanks to Frans-Willem Hardijzer.
To install, ensure that you have openssl installed, and run:
node-waf configure
node-waf buildThis will put the crypto.node binary module in build/default.
The hashing, signing and verifying methods can work with binary, hex or
base64 encoded strings.The encrypt / decrypt methods work with binary, hex or base64 encodings,
with streaming.See test.js for example usage.