diff options
-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": { |