-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathREADME
More file actions
26 lines (16 loc) · 699 Bytes
/
README
File metadata and controls
26 lines (16 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 build
This 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.