summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-10-22 18:01:16 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-01-24 12:47:37 +0100
commit2c1d51210ca713c8ba3c39cab49e7d958fa7f9f6 (patch)
treefc8dacf0209a1acd3e8c903f411d4689b5dd984e
parent3bdc82e799d00738801bd430ca4e57a09819c1b6 (diff)
downloadrsa-git-2c1d51210ca713c8ba3c39cab49e7d958fa7f9f6.tar.gz
Fix typo
-rw-r--r--CHANGELOG.txt2
-rw-r--r--README.md2
-rw-r--r--doc/installation.rst2
-rw-r--r--doc/usage.rst4
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index e715d22..ea179ee 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -38,7 +38,7 @@ Version 3.4.1 - released 2016-03-26
Version 3.4 - released 2016-03-17
----------------------------------------
-- Moved development to Github: https://github.com/sybrenstuvel/python-rsa
+- Moved development to GitHub: https://github.com/sybrenstuvel/python-rsa
- Solved side-channel vulnerability by implementing blinding, fixes #19
- Deprecated the VARBLOCK format and rsa.bigfile module due to security issues, see
https://github.com/sybrenstuvel/python-rsa/issues/13
diff --git a/README.md b/README.md
index 86005fb..0df9196 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ Download and install using:
or download it from the [Python Package Index](https://pypi.python.org/pypi/rsa).
-The source code is maintained at [Github](https://github.com/sybrenstuvel/python-rsa/) and is
+The source code is maintained at [GitHub](https://github.com/sybrenstuvel/python-rsa/) and is
licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
diff --git a/doc/installation.rst b/doc/installation.rst
index fa0b16b..32dc257 100644
--- a/doc/installation.rst
+++ b/doc/installation.rst
@@ -16,7 +16,7 @@ then type::
The sources are tracked in our `Git repository`_ at
-Github. It also hosts the `issue tracker`_.
+GitHub. It also hosts the `issue tracker`_.
.. _`Git repository`: https://github.com/sybrenstuvel/python-rsa.git
.. _`issue tracker`: https://github.com/sybrenstuvel/python-rsa/issues
diff --git a/doc/usage.rst b/doc/usage.rst
index 4fbc7e5..980f99c 100644
--- a/doc/usage.rst
+++ b/doc/usage.rst
@@ -303,10 +303,10 @@ Only using Python-RSA: the VARBLOCK format
2. decrypt/encrypt_bigfile() does not use hybrid encryption (it uses plain RSA)
and has no method for chaining, so block reordering is possible.
- See `issue #19 on Github`_ for more information.
+ See `issue #19 on GitHub`_ for more information.
.. _Authenticated encryption: https://en.wikipedia.org/wiki/Authenticated_encryption
-.. _issue #19 on Github: https://github.com/sybrenstuvel/python-rsa/issues/13
+.. _issue #19 on GitHub: https://github.com/sybrenstuvel/python-rsa/issues/13
As of Python-RSA version 4.0, the VARBLOCK format has been removed from the
library. For now, this section is kept here to document the issues with that