summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore8
-rw-r--r--LICENSE13
-rw-r--r--MANIFEST.in5
-rw-r--r--README21
4 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d0e46f9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+*.py[co]
+*.egg-info
+
+.idea/
+
+dist/
+distribute*.tar.gz
+distribute*.egg
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..da76c9d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+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
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..8cf0021
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,5 @@
+include README
+include LICENSE
+include *.py
+recursive-include rsa *.py
+recursive-include tests *.py
diff --git a/README b/README
new file mode 100644
index 0000000..ba68881
--- /dev/null
+++ b/README
@@ -0,0 +1,21 @@
+Pure Python RSA implementation
+==============================
+
+As an assignment for the University of Amsterdam we wrote a pure Python RSA
+implementation. It's a module for calculating large primes, and RSA encryption,
+decryption, signing and verification. It also includes generating public and
+private keys.
+
+Download and install using:
+
+ pip install rsa
+
+or download it from [PyPI][pypi-rsa].
+
+The source code is maintained in a [Mercurial repository] and is licensed under
+the [Apache License, version 2.0][APLv2].
+
+
+[Mercurial repository]: http://hg.stuvel.eu/python-rsa
+[pypi-rsa]: http://pypi.python.org/pypi/rsa
+[APLv2]: http://www.apache.org/licenses/LICENSE-2.0