summaryrefslogtreecommitdiff
path: root/rsa
diff options
context:
space:
mode:
authorSybren St?vel <sybren@stuvel.eu>2016-01-18 15:20:10 +0100
committerSybren St?vel <sybren@stuvel.eu>2016-01-18 15:20:10 +0100
commit2811e9264205264dea49fb12b98b16d09de679d0 (patch)
tree4ce8ee2777f63b392568a0a1006b74775307fab2 /rsa
parentc426dd7698cebf7c30dbd522f8d62fe5844e4916 (diff)
parent8ea8d4785ea4e0e8df75250aeebc3961876c4481 (diff)
downloadrsa-2811e9264205264dea49fb12b98b16d09de679d0.tar.gz
Merged in fale/python-rsa (pull request #15)
Fixed import error in old version code
Diffstat (limited to 'rsa')
-rw-r--r--rsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 99fd668..c4654e9 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__ = "2015-11-05"
-__version__ = '3.2.3'
+__date__ = "2016-01-13"
+__version__ = '3.3'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \