File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
_test_unstructured_client/unit Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ def rsa_key_pair():
3333
3434 return private_key_pem , public_key_pem
3535
36+ @pytest .mark .ignore (reason = "Encryption is not in the SDK yet" )
3637def test_encrypt_rsa (rsa_key_pair ):
3738 private_key_pem , public_key_pem = rsa_key_pair
3839
@@ -55,6 +56,7 @@ def test_encrypt_rsa(rsa_key_pair):
5556 assert decrypted_text == plaintext
5657
5758
59+ @pytest .mark .ignore (reason = "Encryption is not in the SDK yet" )
5860def test_encrypt_rsa_aes (rsa_key_pair ):
5961 private_key_pem , public_key_pem = rsa_key_pair
6062
@@ -80,6 +82,7 @@ def test_encrypt_rsa_aes(rsa_key_pair):
8082rsa_key_size_bytes = 2048 // 8
8183max_payload_size = rsa_key_size_bytes - 66 # OAEP SHA256 overhead
8284
85+ @pytest .mark .ignore (reason = "Encryption is not in the SDK yet" )
8386@pytest .mark .parametrize (("plaintext" , "secret_type" ), [
8487 ("Short message" , "rsa" ),
8588 ("A" * (max_payload_size ), "rsa" ), # Just at the RSA limit
You can’t perform that action at this time.
0 commit comments