Skip to content

Commit

Permalink
Added
Browse files Browse the repository at this point in the history
- AMD support.
- support for web worker. #13

Changed
- throw error if input type is incorrect when cSHAKE and KMAC.
- freeze hash after finalize.
  • Loading branch information
emn178 committed Dec 1, 2017
1 parent c43f9d1 commit fb7e640
Show file tree
Hide file tree
Showing 17 changed files with 2,289 additions and 285 deletions.
2 changes: 0 additions & 2 deletions .covignore

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/node_modules/
/covreporter/
/my_test/
/coverage/
/.nyc_output/
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/node_modules/
/coverage/
/.nyc_output/
/tests/
.travis.yml
.npmignore
bower.json
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
language: node_js
node_js:
- "0.12.15"
- "4.5"
- "6.5.0"
- "6.11.4"
- "8.6.0"
before_install:
- npm install coveralls
- npm install mocha-lcov-reporter
script: npm run-script coveralls
after_success: npm run coveralls
branches:
only:
- master
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## v0.7.0 / 2017-12-01
### Added
- AMD support.
- support for web worker. #13

### Changed
- throw error if input type is incorrect when cSHAKE and KMAC.
- freeze hash after finalize.

## v0.6.1 / 2017-07-03
### Fixed
- Typo on variable kmac_256 type definition. #12
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-sha3",
"version": "0.6.1",
"version": "0.7.0",
"main": ["src/sha3.js"],
"ignore": [
"samples",
Expand Down
4 changes: 2 additions & 2 deletions build/sha3.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit fb7e640

Please sign in to comment.