summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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, \