We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c15ed4e commit ee760fcCopy full SHA for ee760fc
tests/algorithms/test_RSA.py
@@ -235,7 +235,7 @@ def test_pycrypto_RSA_key_instance():
235
@pytest.mark.pycryptodome
236
@pytest.mark.parametrize("private_key", PRIVATE_KEYS)
237
@pytest.mark.skipif(None in (PyCryptoRSA, PyCryptoRSAKey), reason="Pycrypto/dome backend not available")
238
-def test_pycrypto_unencoded_cleartext(private_key):
+def test_pycrypto_sign_unencoded_cleartext(private_key):
239
key = PyCryptoRSAKey(private_key, ALGORITHMS.RS256)
240
msg = b'test'
241
signature = key.sign(msg)
0 commit comments