We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5acf9cd commit 08e609fCopy full SHA for 08e609f
2 files changed
CHANGELOG.txt
@@ -12,6 +12,7 @@ Version 4.0 - in development
12
- Removed CLI commands that use the VARBLOCK/bigfile format.
13
- Ensured that PublicKey.save_pkcs1() and PrivateKey.save_pkcs1() always return bytes.
14
- Dropped support for Python 2.6
15
+- Dropped support for Psyco
16
- Miller-Rabin iterations determined by bitsize of key.
17
18
rsa/transform.py
@@ -21,16 +21,6 @@
21
22
from __future__ import absolute_import
23
24
-try:
25
- # We'll use psyco if available on 32-bit architectures to speed up code.
26
- # Using psyco (if available) cuts down the execution time on Python 2.5
27
- # at least by half.
28
- import psyco
29
-
30
- psyco.full()
31
-except ImportError:
32
- pass
33
34
import binascii
35
from struct import pack
36
from rsa import common
0 commit comments