summaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2014-02-22 11:25:25 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2014-02-22 11:25:25 +0100
commit75117e4a1fad188da8599ff18939d1484cc53335 (patch)
treea3b7cbd90dfcca58080096956c209476833c6812 /rsa/__init__.py
parent7cf95f471d1970ccfceac40c10ecc49fb10503e3 (diff)
downloadrsa-git-75117e4a1fad188da8599ff18939d1484cc53335.tar.gz
Bumped version to 3.1.4version-3.1.4
Diffstat (limited to 'rsa/__init__.py')
-rw-r--r--rsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 5c714c4..2d01c12 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__ = "2014-02-02"
-__version__ = '3.1.3'
+__date__ = "2014-02-22"
+__version__ = '3.1.4'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \