summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2021-02-24 12:09:47 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2021-02-24 12:09:47 +0100
commit092acf8c7cd3368bd1e79ac133e1986b5b1c8261 (patch)
treee7eb109017c9361653219edbf92da82b65cfef85
parent5b517c26e350791cc3d31c937e5f5ff4b8791949 (diff)
downloadrsa-git-092acf8c7cd3368bd1e79ac133e1986b5b1c8261.tar.gz
README: change header style
Change header style from RestructuredText style (dashes under header) to MarkDown style (pound signs in front of header).
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index d2f512d..6b0b336 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-Pure Python RSA implementation
-==============================
+# Pure Python RSA implementation
[![PyPI](https://img.shields.io/pypi/v/rsa.svg)](https://pypi.org/project/rsa/)
[![Build Status](https://travis-ci.org/sybrenstuvel/python-rsa.svg?branch=master)](https://travis-ci.org/sybrenstuvel/python-rsa)
@@ -23,8 +22,8 @@ or download it from the [Python Package Index](https://pypi.org/project/rsa/).
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)
-Security
---------
+## Security
+
Because of how Python internally stores numbers, it is very hard (if not impossible) to make a pure-Python program secure against timing attacks. This library is no exception, so use it with care. See https://securitypitfalls.wordpress.com/2018/08/03/constant-time-compare-in-python/ for more info.