summaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2011-08-05 10:19:58 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2011-08-05 10:19:58 +0200
commit1d4381433fc9e0e591f8850133ac0d5e597b6ed9 (patch)
tree11a12abb7547eb5214e7d7e53262b34e7890cd68 /rsa/__init__.py
parentbdce47ed8b0bc0dedb57e08078007d990b9bcd48 (diff)
downloadrsa-git-1d4381433fc9e0e591f8850133ac0d5e597b6ed9.tar.gz
Bumped version to 3.0
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 1e60233..3803d8f 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, Marloes de Boer, Ivo Tamboer, and Barry Mead"
-__date__ = "2010-02-08"
-__version__ = '3.0-beta0'
+__date__ = "2011-08-05"
+__version__ = '3.0'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \