@@ -214,9 +214,11 @@ def test_raw_rsa_boundary(self):
214
214
rsa_obj = self .rsa .generate (1024 )
215
215
216
216
self .assertRaises (ValueError , rsa_obj ._decrypt , rsa_obj .n )
217
+ self .assertRaises (ValueError , rsa_obj ._decrypt_to_bytes , rsa_obj .n )
217
218
self .assertRaises (ValueError , rsa_obj ._encrypt , rsa_obj .n )
218
219
219
220
self .assertRaises (ValueError , rsa_obj ._decrypt , - 1 )
221
+ self .assertRaises (ValueError , rsa_obj ._decrypt_to_bytes , - 1 )
220
222
self .assertRaises (ValueError , rsa_obj ._encrypt , - 1 )
221
223
222
224
def test_size (self ):
@@ -265,6 +267,8 @@ def _check_public_key(self, rsaObj):
265
267
# Public keys should not be able to sign or decrypt
266
268
self .assertRaises (TypeError , rsaObj ._decrypt ,
267
269
bytes_to_long (ciphertext ))
270
+ self .assertRaises (TypeError , rsaObj ._decrypt_to_bytes ,
271
+ bytes_to_long (ciphertext ))
268
272
269
273
# Check __eq__ and __ne__
270
274
self .assertEqual (rsaObj .public_key () == rsaObj .public_key (),True ) # assert_
@@ -279,7 +283,7 @@ def _exercise_primitive(self, rsaObj):
279
283
ciphertext = bytes_to_long (a2b_hex (self .ciphertext ))
280
284
281
285
# Test decryption
282
- plaintext = bytes_to_long ( rsaObj ._decrypt (ciphertext ) )
286
+ plaintext = rsaObj ._decrypt (ciphertext )
283
287
284
288
# Test encryption (2 arguments)
285
289
new_ciphertext2 = rsaObj ._encrypt (plaintext )
@@ -304,7 +308,7 @@ def _check_decryption(self, rsaObj):
304
308
ciphertext = bytes_to_long (a2b_hex (self .ciphertext ))
305
309
306
310
# Test plain decryption
307
- new_plaintext = bytes_to_long ( rsaObj ._decrypt (ciphertext ) )
311
+ new_plaintext = rsaObj ._decrypt (ciphertext )
308
312
self .assertEqual (plaintext , new_plaintext )
309
313
310
314
0 commit comments