summaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/crypto/twofish
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/crypto/twofish')
-rw-r--r--vendor/golang.org/x/crypto/twofish/twofish.go2
-rw-r--r--vendor/golang.org/x/crypto/twofish/twofish_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/golang.org/x/crypto/twofish/twofish.go b/vendor/golang.org/x/crypto/twofish/twofish.go
index 376fa0ec2..6db01fcf4 100644
--- a/vendor/golang.org/x/crypto/twofish/twofish.go
+++ b/vendor/golang.org/x/crypto/twofish/twofish.go
@@ -5,7 +5,7 @@
// Package twofish implements Bruce Schneier's Twofish encryption algorithm.
package twofish // import "golang.org/x/crypto/twofish"
-// Twofish is defined in http://www.schneier.com/paper-twofish-paper.pdf [TWOFISH]
+// Twofish is defined in https://www.schneier.com/paper-twofish-paper.pdf [TWOFISH]
// This code is a port of the LibTom C implementation.
// See http://libtom.org/?page=features&newsitems=5&whatfile=crypt.
diff --git a/vendor/golang.org/x/crypto/twofish/twofish_test.go b/vendor/golang.org/x/crypto/twofish/twofish_test.go
index 303081f3f..ed6a1a8fd 100644
--- a/vendor/golang.org/x/crypto/twofish/twofish_test.go
+++ b/vendor/golang.org/x/crypto/twofish/twofish_test.go
@@ -69,7 +69,7 @@ var testVectors = []struct {
[]byte{0x90, 0xAF, 0xE9, 0x1B, 0xB2, 0x88, 0x54, 0x4F, 0x2C, 0x32, 0xDC, 0x23, 0x9B, 0x26, 0x35, 0xE6},
[]byte{0x6C, 0xB4, 0x56, 0x1C, 0x40, 0xBF, 0x0A, 0x97, 0x05, 0x93, 0x1C, 0xB6, 0xD4, 0x08, 0xE7, 0xFA},
},
- // These test are derived from http://www.schneier.com/code/ecb_ival.txt
+ // These tests are derived from https://www.schneier.com/code/ecb_ival.txt
{
[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},