aboutsummaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/__init__.py')
-rw-r--r--rsa/__init__.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 9b05c6c..1567dc1 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -28,8 +26,8 @@ from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \
VerificationError, find_signature_hash, sign_hash, compute_hash
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
-__date__ = "2018-09-16"
-__version__ = '4.0'
+__date__ = '2020-06-12'
+__version__ = '4.6'
# Do doctest if we're run directly
if __name__ == "__main__":
@@ -39,4 +37,4 @@ if __name__ == "__main__":
__all__ = ["newkeys", "encrypt", "decrypt", "sign", "verify", 'PublicKey',
'PrivateKey', 'DecryptionError', 'VerificationError',
- 'compute_hash', 'sign_hash']
+ 'find_signature_hash', 'compute_hash', 'sign_hash']