Skip to content

Commit

Permalink
Add read me file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Vosberg committed Apr 23, 2013
1 parent b92eb8c commit a5b620f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
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

0 comments on commit a5b620f

Please sign in to comment.