summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Turek <brian.turek@gmail.com>2017-01-02 11:08:18 -0600
committerBrian Turek <brian.turek@gmail.com>2017-01-02 11:08:18 -0600
commit9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da (patch)
tree2ffb1a424ecbda04d09fd58649b53e2ef0c962c7
parent1d65c177902e3bfe6f633c2b1164b0b910224a65 (diff)
downloadjsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.zip
jsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.tar.gz
jsSHA-9aabb6e5cc72e938d8eb420c27c0b3bdff51c3da.tar.bz2
Updated copyright year
-rw-r--r--CHANGELOG.md2
-rw-r--r--LICENSE2
-rw-r--r--src/sha.js2
-rw-r--r--src/sha1.js2
-rw-r--r--src/sha256.js2
-rw-r--r--src/sha3.js2
-rw-r--r--src/sha512.js2
-rw-r--r--src/sha_dev.js2
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
diff --git a/LICENSE b/LICENSE
index 8b7218d..46ef773 100644
--- a/LICENSE
+++ b/LICENSE
@@ -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
diff --git a/src/sha.js b/src/sha.js
index b48a495..540182e 100644
--- a/src/sha.js
+++ b/src/sha.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/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
*