Skip to content

Commit

Permalink
v0.9.2 (+ changelog)
Browse files Browse the repository at this point in the history
  • Loading branch information
dchest committed Jul 22, 2014
1 parent 84d5fec commit 4389a04
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
TweetNaCl.js Changelog
======================

v0.9.2
------

* Improved documentation.
* Fast version: increased theoretical message size limit from 2^32-1 to 2^52
bytes in Poly1305 (and thus, secretbox and box). However this has no impact
in practice since JavaScript arrays or ArrayBuffers are limited to 32-bit
indexes, and most implementations won't allocate more than a gigabyte or so.
(Obviously, there are no tests for the correctness of implementation.) Also,
it's not recommended to use messages that large without splitting them into
smaller packets anyway.

v0.9.1
------

* Initial release
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tweetnacl",
"version": "0.9.1",
"version": "0.9.2",
"homepage": "https://dchest.github.io/tweetnacl-js",
"authors": [
"TweetNaCl.js Contributors"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tweetnacl",
"version": "0.9.1",
"version": "0.9.2",
"description": "Port of TweetNaCl cryptographic library to JavaScript",
"main": "nacl.js",
"directories": {
Expand Down

0 comments on commit 4389a04

Please sign in to comment.