forked from brix/crypto-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Evan Vosberg
committed
Apr 23, 2013
1 parent
b92eb8c
commit a5b620f
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# crypto-js | ||
|
||
Modularized port of googlecode project crypto-js. | ||
|
||
## Node.js (Install) | ||
|
||
Requirements: | ||
* Node.js | ||
* npm (Node.js package manager) | ||
|
||
```bash | ||
npm install crypto-js | ||
``` | ||
|
||
### USE | ||
|
||
```javascript | ||
var AES = require("crypto-js/aes"); | ||
var SHA256 = require("crypto-js/sha256"); | ||
``` | ||
|
||
## Client (browser) | ||
|
||
### USE | ||
|
||
```javascript | ||
require(["crypto-js/aes", "crypto-js/sha256"], function (AES, SHA256) { | ||
|
||
}); | ||
``` | ||
|
||
## API | ||
|
||
See: https://code.google.com/p/crypto-js |