summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-04-01 00:33:19 -0700
committerAlex Grönholm <alex.gronholm@nextday.fi>2018-04-01 10:33:19 +0300
commit81b652d4017e5b7571a4177a5a0a58eec9526d0b (patch)
tree4bcdaba408aa55e180b00d9b537586be23cc51c3
parent6fdd6986d36578accf4ad297178c5cc1437bd7e8 (diff)
downloadwheel-git-81b652d4017e5b7571a4177a5a0a58eec9526d0b.tar.gz
Update doc links to use https where available (#217)
-rw-r--r--README.rst4
-rw-r--r--docs/index.rst2
-rw-r--r--wheel/signatures/djbec.py10
3 files changed, 8 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 947e1d4..3b8133c 100644
--- a/README.rst
+++ b/README.rst
@@ -16,8 +16,8 @@ The wheel project provides a `bdist_wheel` command for setuptools
newer `pip` from https://github.com/pypa/pip or with wheel's own command
line utility.
-The wheel documentation is at http://wheel.rtfd.org/. The file format
-is documented in PEP 427 (http://www.python.org/dev/peps/pep-0427/).
+The wheel documentation is at https://wheel.readthedocs.io/. The file format is
+documented in PEP 427 (https://www.python.org/dev/peps/pep-0427/).
The reference implementation is at https://github.com/pypa/wheel
diff --git a/docs/index.rst b/docs/index.rst
index b907fbb..c5a7d76 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -255,7 +255,7 @@ Format
------
The wheel format is documented as PEP 427 "The Wheel Binary Package
-Format..." (http://www.python.org/dev/peps/pep-0427/).
+Format..." (https://www.python.org/dev/peps/pep-0427/).
Slogans
-------
diff --git a/wheel/signatures/djbec.py b/wheel/signatures/djbec.py
index d0d4fbe..e9b3115 100644
--- a/wheel/signatures/djbec.py
+++ b/wheel/signatures/djbec.py
@@ -1,9 +1,9 @@
# Ed25519 digital signatures
-# Based on http://ed25519.cr.yp.to/python/ed25519.py
-# See also http://ed25519.cr.yp.to/software.html
+# Based on https://ed25519.cr.yp.to/python/ed25519.py
+# See also https://ed25519.cr.yp.to/software.html
# Adapted by Ron Garret
# Sped up considerably using coordinate transforms found on:
-# http://www.hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html
+# https://www.hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html
# Specifically add-2008-hwcd-4 and dbl-2008-hwcd
import hashlib
@@ -96,7 +96,7 @@ B = [Bx % q, By % q]
# return Q
# Faster (!) version based on:
-# http://www.hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html
+# https://www.hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html
def xpt_add(pt1, pt2):
(X1, Y1, Z1, T1) = pt1
@@ -236,7 +236,7 @@ def checkvalid(s, m, pk):
##########################################################
#
# Curve25519 reference implementation by Matthew Dempsky, from:
-# http://cr.yp.to/highspeed/naclcrypto-20090310.pdf
+# https://cr.yp.to/highspeed/naclcrypto-20090310.pdf
# P = 2 ** 255 - 19
P = q