diff options
author | Brian Turek <brian.turek@gmail.com> | 2016-05-13 14:45:17 -0400 |
---|---|---|
committer | Brian Turek <brian.turek@gmail.com> | 2016-05-13 14:45:17 -0400 |
commit | 0103f12cc44db888a34a50cdc146c20d1da1a253 (patch) | |
tree | c4c09091091f387ba0035b9562cae8b86374bb61 | |
parent | 91a95bd0c6fb89ca45214b3a98ebbba9dc81a364 (diff) | |
download | jsSHA-origin/v1.zip jsSHA-origin/v1.tar.gz jsSHA-origin/v1.tar.bz2 |
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | package.json | 2 |
4 files changed, 7 insertions, 3 deletions
@@ -1,6 +1,10 @@ ------------------------- jsSHA - ChangeLog ------------------------- +1.6.2 (2016-05-13) +========================= +- Fixed problem with hashing strings over 4 billion bits (thanks Eicar!) + 1.6.1 (2015-06-25) ========================= - Fixed issue with SHA-512 family of hashes failing is raw input was a @@ -1,4 +1,4 @@ -Copyright (c) 2008-2013, Brian Turek +Copyright (c) 2008-2016, Brian Turek All rights reserved. Redistribution and use in source and binary forms, with or without @@ -1,6 +1,6 @@ { "name" : "jsSHA", - "version" : "1.6.1", + "version" : "1.6.2", "description" : "jsSHA is a JavaScript implementation of the entire family of SHA hashes as defined in FIPS 180-2 (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) as well as HMAC", "main" : "src/sha.js", "repository" : { diff --git a/package.json b/package.json index f8f6263..ce2e10e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jssha", - "version": "1.6.1", + "version": "1.6.2", "description": "jsSHA is a JavaScript implementation of the entire family of SHA hashes as defined in FIPS 180-2 (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) as well as HMAC", "main": "src/sha.js", "repository": { |