summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2013-09-15 10:55:41 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2013-09-15 10:55:41 +0100
commitcf665229f579813efba9d3a86ab06d11a85805d0 (patch)
tree0a23288660f0d1fa0cc0f091c9acbbd1b4431f74
parent212a62a594892ef234f280e8c633fbc6f73441ce (diff)
downloadrsa-git-cf665229f579813efba9d3a86ab06d11a85805d0.tar.gz
Bumped version to 3.1.2version-3.1.2
-rw-r--r--rsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 8fb5e00..51955c3 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -28,8 +28,8 @@ If you want to have a more secure implementation, use the functions from the
"""
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
-__date__ = "2012-06-17"
-__version__ = '3.1.1'
+__date__ = "2013-09-15"
+__version__ = '3.1.2'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \