summaryrefslogtreecommitdiff
path: root/rsa/common.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-02-05 16:01:20 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-02-05 16:01:20 +0100
commit3934ab4f16becf439033610b6986a796ab327f72 (patch)
tree5d495db0e4d52d22896af0ba704c4ce11d2cbaed /rsa/common.py
parent282069092d41c67fbda10cb5ffa06a58cd9c5baf (diff)
downloadrsa-git-3934ab4f16becf439033610b6986a796ab327f72.tar.gz
Updated documentation, mostly http -> https changes
Also: - changed http to https in the code - changed header underlines in the documentation to match the header length
Diffstat (limited to 'rsa/common.py')
-rw-r--r--rsa/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/common.py b/rsa/common.py
index bdbc90a..e074334 100644
--- a/rsa/common.py
+++ b/rsa/common.py
@@ -6,7 +6,7 @@
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@@ -22,7 +22,7 @@ def bit_size(num):
Number of bits needed to represent a integer excluding any prefix
0 bits.
- As per definition from http://wiki.python.org/moin/BitManipulation and
+ As per definition from https://wiki.python.org/moin/BitManipulation and
to match the behavior of the Python 3 API.
Usage::