Skip to content

Commit

Permalink
change example
Browse files Browse the repository at this point in the history
  • Loading branch information
fukata committed Feb 15, 2012
1 parent 976b1bf commit 7ebc7d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -15,11 +15,13 @@ This sample, encryption, decryption input and output to the format of the follow

## Java

String src = "Hello,CryptWorld";
String enc = AESUtil.encrypt(src);
String dec = AESUtil.decrypt(enc);

## Node.js

Encrypt = require './encrypt'
src = 'Hello,CryptWorld'
enc = Encrypt.encrypt src
dec = Encrypt.decrypt enc

0 comments on commit 7ebc7d5

Please sign in to comment.