summaryrefslogtreecommitdiff
path: root/rsa
diff options
context:
space:
mode:
authorSybren A. St?vel <sybren@stuvel.eu>2012-06-17 10:20:52 +0100
committerSybren A. St?vel <sybren@stuvel.eu>2012-06-17 10:20:52 +0100
commitc1e433b00e37223ce3ebd3d66f1ae6abe75d144a (patch)
tree49096d753c600943ae093630ec4acb2c56d31259 /rsa
parent4d270b9ebcf3c04621b301794d1848acc670eff9 (diff)
downloadrsa-c1e433b00e37223ce3ebd3d66f1ae6abe75d144a.tar.gz
Bumped version to 3.1
Diffstat (limited to 'rsa')
-rw-r--r--rsa/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 40144dc..59d5a9d 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -27,9 +27,9 @@ If you want to have a more secure implementation, use the functions from the
"""
-__author__ = "Sybren Stuvel, Marloes de Boer, Ivo Tamboer, and Barry Mead"
-__date__ = "2011-08-07"
-__version__ = '3.1-beta0'
+__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
+__date__ = "2012-06-17"
+__version__ = '3.1'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \