summaryrefslogtreecommitdiff
path: root/rsa
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
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')
-rw-r--r--rsa/__init__.py2
-rw-r--r--rsa/_compat.py2
-rw-r--r--rsa/_version133.py2
-rw-r--r--rsa/_version200.py2
-rw-r--r--rsa/asn1.py2
-rw-r--r--rsa/bigfile.py2
-rw-r--r--rsa/cli.py2
-rw-r--r--rsa/common.py4
-rw-r--r--rsa/core.py2
-rw-r--r--rsa/key.py2
-rw-r--r--rsa/parallel.py2
-rw-r--r--rsa/pem.py2
-rw-r--r--rsa/pkcs1.py2
-rw-r--r--rsa/prime.py2
-rw-r--r--rsa/randnum.py2
-rw-r--r--rsa/transform.py2
-rw-r--r--rsa/util.py2
-rw-r--r--rsa/varblock.py2
18 files changed, 19 insertions, 19 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index a6161f1..aa46df7 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.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,
diff --git a/rsa/_compat.py b/rsa/_compat.py
index 383ad24..93393d9 100644
--- a/rsa/_compat.py
+++ b/rsa/_compat.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,
diff --git a/rsa/_version133.py b/rsa/_version133.py
index 9115633..ff03b45 100644
--- a/rsa/_version133.py
+++ b/rsa/_version133.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,
diff --git a/rsa/_version200.py b/rsa/_version200.py
index 2436aa0..1a16949 100644
--- a/rsa/_version200.py
+++ b/rsa/_version200.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,
diff --git a/rsa/asn1.py b/rsa/asn1.py
index b757450..b724b8f 100644
--- a/rsa/asn1.py
+++ b/rsa/asn1.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,
diff --git a/rsa/bigfile.py b/rsa/bigfile.py
index 8d8f210..3a09716 100644
--- a/rsa/bigfile.py
+++ b/rsa/bigfile.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,
diff --git a/rsa/cli.py b/rsa/cli.py
index 566195e..3a21878 100644
--- a/rsa/cli.py
+++ b/rsa/cli.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,
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::
diff --git a/rsa/core.py b/rsa/core.py
index 9b5c107..b3114d9 100644
--- a/rsa/core.py
+++ b/rsa/core.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,
diff --git a/rsa/key.py b/rsa/key.py
index f49a102..64600a2 100644
--- a/rsa/key.py
+++ b/rsa/key.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,
diff --git a/rsa/parallel.py b/rsa/parallel.py
index 36c06ba..0efab11 100644
--- a/rsa/parallel.py
+++ b/rsa/parallel.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,
diff --git a/rsa/pem.py b/rsa/pem.py
index 79d07ac..32a9706 100644
--- a/rsa/pem.py
+++ b/rsa/pem.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,
diff --git a/rsa/pkcs1.py b/rsa/pkcs1.py
index 088b9b7..28f0dc5 100644
--- a/rsa/pkcs1.py
+++ b/rsa/pkcs1.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,
diff --git a/rsa/prime.py b/rsa/prime.py
index 2ac1ffe..e4156ce 100644
--- a/rsa/prime.py
+++ b/rsa/prime.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,
diff --git a/rsa/randnum.py b/rsa/randnum.py
index 2bb5806..12a6757 100644
--- a/rsa/randnum.py
+++ b/rsa/randnum.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,
diff --git a/rsa/transform.py b/rsa/transform.py
index 758dea4..16061a9 100644
--- a/rsa/transform.py
+++ b/rsa/transform.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,
diff --git a/rsa/util.py b/rsa/util.py
index 1958161..29d5eb1 100644
--- a/rsa/util.py
+++ b/rsa/util.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,
diff --git a/rsa/varblock.py b/rsa/varblock.py
index d7d34ab..1c8d839 100644
--- a/rsa/varblock.py
+++ b/rsa/varblock.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,