Skip to content

Commit 2b9915a

Browse files
Cleaning up the README file.
1 parent 92150c5 commit 2b9915a

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,17 @@ from client_encryption.field_level_encryption import encrypt_payload, decrypt_pa
7373

7474
```python
7575
# JWE Encryption/Decryption
76-
from client_encryption.field_level_encryption_config import FieldLevelEncryptionConfig
77-
from client_encryption.field_level_encryption import encrypt_payload, decrypt_payload
76+
from client_encryption.jwe_encryption_config import JweEncryptionConfig
77+
from client_encryption.jwe_encryption import encrypt_payload, decrypt_payload
7878
```
7979

8080
### Performing Payload Encryption and Decryption <a name="performing-payload-encryption-and-decryption"></a>
8181

82-
+ [Introduction](#introduction)
82+
This library supports two types of encryption/decryption, both of which support field level and entire payload encryption: JWE encryption and what the library refers to as Field Level Encryption (Mastercard encryption), a scheme used by many services hosted on Mastercard Developers before the library added support for JWE.
83+
8384
+ [JWE Encryption and Decryption](#jwe-encryption-and-decryption)
8485
+ [Mastercard Encryption and Decryption](#mastercard-encryption-and-decryption)
8586

86-
#### Introduction <a name="introduction"></a>
87-
88-
This library supports two types of encryption/decryption, both of which support field level and entire payload encryption: JWE encryption and what the library refers to as Field Level Encryption (Mastercard encryption), a scheme used by many services hosted on Mastercard Developers before the library added support for JWE.
89-
9087
#### JWE Encryption and Decryption <a name="jwe-encryption-and-decryption"></a>
9188

9289
+ [Introduction](#jwe-introduction)

0 commit comments

Comments
 (0)