Skip to content

Commit

Permalink
tests/wasp_general_crypto_rsa_test.py: debug info added
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ezzz committed Jul 27, 2018
1 parent 6fea130 commit e0b868e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/wasp_general_crypto_rsa_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
class TestWRSA:

def test(self):

print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
import cryptography.hazmat.backends.openssl
import os
with open(os.path.join(os.path.dirname(cryptography.hazmat.backends.openssl.__file__), 'backend.py'), 'r') as f:
print(f.read())
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')

rsa = WRSA()
assert(rsa.has_private_key() is False)
assert(rsa.has_public_key() is False)
Expand Down

0 comments on commit e0b868e

Please sign in to comment.