doc: Use https URLs where possible

This commit is contained in:
Sawyer Billings
2020-12-30 21:49:12 -05:00
committed by fanquake
parent f52f427b8e
commit e8640849c7
14 changed files with 19 additions and 19 deletions

View File

@@ -27,7 +27,7 @@ def xor_bytes(b0, b1):
def jacobi_symbol(n, k):
"""Compute the Jacobi symbol of n modulo k
See http://en.wikipedia.org/wiki/Jacobi_symbol
See https://en.wikipedia.org/wiki/Jacobi_symbol
For our application k is always prime, so this is the same as the Legendre symbol."""
assert k > 0 and k & 1, "jacobi symbol is only defined for positive odd k"