summaryrefslogtreecommitdiff
path: root/rsa/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/core.py')
-rw-r--r--rsa/core.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/rsa/core.py b/rsa/core.py
index cc95f59..d984b89 100644
--- a/rsa/core.py
+++ b/rsa/core.py
@@ -47,10 +47,6 @@ def decrypt_int(cyphertext, dkey, n):
"""Decrypts a cypher text using the decryption key 'dkey', working
modulo n"""
- if type(cyphertext) not in (types.IntType, types.LongType):
- raise TypeError('cyphertext should be an integer, not %s' %
- cyphertext.__type__)
-
assert_int(cyphertext, 'cyphertext')
assert_int(dkey, 'dkey')
assert_int(n, 'n')