* Support to output Integer Array.

* Fixed shake output incorrect when it's greater than 1088.
This commit is contained in:
Yi-Cyuan
2015-09-18 16:29:07 +08:00
parent 99d724b22a
commit ca56f2ac21
9 changed files with 298 additions and 202 deletions
+3
View File
@@ -45,6 +45,9 @@ shake_256('Message to hash', 512);
// Support ArrayBuffer output
var buffer = keccak_224.buffer('Message to hash');
// Support Array output
var buffer = keccak_224.array('Message to hash');
```
If you use node.js, you should require the module first:
```JavaScript