Skip to content

Commit 5ef0053

Browse files
kevinburkebradfitz
authored andcommitted
all: use HTTPS for links that support it
Many websites now support HTTPS that may not at the time the code was committed; let's use the HTTPS links where we can. Change-Id: I7099dfa0dbb213294e65b4387f343d6e8f955b97 Reviewed-on: https://go-review.googlesource.com/47131 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 84f24df commit 5ef0053

22 files changed

+25
-24
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This source code refers to The Go Authors for copyright purposes.
22
# The master list of authors is in the main Go distribution,
3-
# visible at http://tip.golang.org/AUTHORS.
3+
# visible at https://tip.golang.org/AUTHORS.

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This source code was written by the Go contributors.
22
# The master list of contributors is in the main Go distribution,
3-
# visible at http://tip.golang.org/CONTRIBUTORS.
3+
# visible at https://tip.golang.org/CONTRIBUTORS.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This repository holds supplementary Go cryptography libraries.
22

3-
To submit changes to this repository, see http://golang.org/doc/contribute.html.
3+
To submit changes to this repository, see https://golang.org/doc/contribute.html.

blowfish/blowfish_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type CryptTest struct {
1212
out []byte
1313
}
1414

15-
// Test vector values are from http://www.schneier.com/code/vectors.txt.
15+
// Test vector values are from https://www.schneier.com/code/vectors.txt.
1616
var encryptTests = []CryptTest{
1717
{
1818
[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},

blowfish/cipher.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package blowfish // import "golang.org/x/crypto/blowfish"
77

88
// The code is a port of Bruce Schneier's C implementation.
9-
// See http://www.schneier.com/blowfish.html.
9+
// See https://www.schneier.com/blowfish.html.
1010

1111
import "strconv"
1212

blowfish/const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// The startup permutation array and substitution boxes.
66
// They are the hexadecimal digits of PI; see:
7-
// http://www.schneier.com/code/constants.txt.
7+
// https://www.schneier.com/code/constants.txt.
88

99
package blowfish
1010

curve25519/const_amd64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
// This code was translated into a form compatible with 6a from the public
6-
// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html
6+
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
77

88
#define REDMASK51 0x0007FFFFFFFFFFFF

curve25519/const_amd64.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// This code was translated into a form compatible with 6a from the public
6-
// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html
6+
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
77

88
// +build amd64,!gccgo,!appengine
99

curve25519/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// Package curve25519 provides an implementation of scalar multiplication on
6-
// the elliptic curve known as curve25519. See http://cr.yp.to/ecdh.html
6+
// the elliptic curve known as curve25519. See https://cr.yp.to/ecdh.html
77
package curve25519 // import "golang.org/x/crypto/curve25519"
88

99
// basePoint is the x coordinate of the generator of the curve.

curve25519/freeze_amd64.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// This code was translated into a form compatible with 6a from the public
6-
// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html
6+
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
77

88
// +build amd64,!gccgo,!appengine
99

0 commit comments

Comments
 (0)