diff options
author | Brian Turek <brian.turek@gmail.com> | 2017-01-02 11:08:18 -0600 |
---|---|---|
committer | Brian Turek <brian.turek@gmail.com> | 2017-01-02 11:08:18 -0600 |
commit | 9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da (patch) | |
tree | 2ffb1a424ecbda04d09fd58649b53e2ef0c962c7 | |
parent | 1d65c177902e3bfe6f633c2b1164b0b910224a65 (diff) | |
download | jsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.zip jsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.tar.gz jsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.tar.bz2 |
Updated copyright year
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | src/sha.js | 2 | ||||
-rw-r--r-- | src/sha1.js | 2 | ||||
-rw-r--r-- | src/sha256.js | 2 | ||||
-rw-r--r-- | src/sha3.js | 2 | ||||
-rw-r--r-- | src/sha512.js | 2 | ||||
-rw-r--r-- | src/sha_dev.js | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 621fda9..93dcde6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ jsSHA - ChangeLog ========================= -2.3.0 (2016-XX-XX) +2.3.0 (20XX-XX-XX) ------------------------- - Sped up SHA-3 implementation by adding little-endian capability to conversion functions @@ -1,4 +1,4 @@ -Copyright (c) 2008-2016, Brian Turek +Copyright (c) 2008-2017, Brian Turek All rights reserved. Redistribution and use in source and binary forms, with or without @@ -3,7 +3,7 @@ defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding HMAC implementation as defined in FIPS PUB 198a - Copyright Brian Turek 2008-2016 + Copyright Brian Turek 2008-2017 Distributed under the BSD License See http://caligatio.github.com/jsSHA/ for more information diff --git a/src/sha1.js b/src/sha1.js index 23963d4..a7277e3 100644 --- a/src/sha1.js +++ b/src/sha1.js @@ -3,7 +3,7 @@ defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding HMAC implementation as defined in FIPS PUB 198a - Copyright Brian Turek 2008-2016 + Copyright Brian Turek 2008-2017 Distributed under the BSD License See http://caligatio.github.com/jsSHA/ for more information diff --git a/src/sha256.js b/src/sha256.js index 6ef2060..6c01a73 100644 --- a/src/sha256.js +++ b/src/sha256.js @@ -3,7 +3,7 @@ defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding HMAC implementation as defined in FIPS PUB 198a - Copyright Brian Turek 2008-2016 + Copyright Brian Turek 2008-2017 Distributed under the BSD License See http://caligatio.github.com/jsSHA/ for more information diff --git a/src/sha3.js b/src/sha3.js index 6c19e4b..b1efead 100644 --- a/src/sha3.js +++ b/src/sha3.js @@ -3,7 +3,7 @@ defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding HMAC implementation as defined in FIPS PUB 198a - Copyright Brian Turek 2008-2016 + Copyright Brian Turek 2008-2017 Distributed under the BSD License See http://caligatio.github.com/jsSHA/ for more information diff --git a/src/sha512.js b/src/sha512.js index 8cec42b..9d2bba6 100644 --- a/src/sha512.js +++ b/src/sha512.js @@ -3,7 +3,7 @@ defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding HMAC implementation as defined in FIPS PUB 198a - Copyright Brian Turek 2008-2016 + Copyright Brian Turek 2008-2017 Distributed under the BSD License See http://caligatio.github.com/jsSHA/ for more information diff --git a/src/sha_dev.js b/src/sha_dev.js index f45ef1f..4c4e9d5 100644 --- a/src/sha_dev.js +++ b/src/sha_dev.js @@ -3,7 +3,7 @@ * defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding * HMAC implementation as defined in FIPS PUB 198a * - * Copyright Brian Turek 2008-2016 + * Copyright Brian Turek 2008-2017 * Distributed under the BSD License * See http://caligatio.github.com/jsSHA/ for more information * |