Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 67b4a4c

Browse files
authored
Clean-up
1 parent ebd343d commit 67b4a4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ composer require mastercard/client-encryption
4141

4242
### Loading the Encryption Certificate <a name="loading-the-encryption-certificate"></a>
4343

44-
A certificate resource can be created from a file by calling the `EncryptionUtils::loadEncryptionCertificate` method:
44+
A certificate resource can be created from a file by calling `EncryptionUtils::loadEncryptionCertificate`:
4545
```php
4646
use Mastercard\Developer\Utils\EncryptionUtils;
4747
// ...
@@ -52,9 +52,9 @@ Supported certificate formats: PEM, DER.
5252

5353
### Loading the Decryption Key <a name="loading-the-decryption-key"></a>
5454

55-
#### From a PKCS#12 File
55+
#### From a PKCS#12 Key Store
5656

57-
A private key resource can be created from a PKCS#12 file by calling the `EncryptionUtils::loadDecryptionKey` method:
57+
A private key resource can be created from a PKCS#12 key store by calling `EncryptionUtils::loadDecryptionKey` the following way:
5858
```php
5959
use Mastercard\Developer\Utils\EncryptionUtils;
6060
// ...
@@ -66,7 +66,7 @@ $decryptionKey = EncryptionUtils::loadDecryptionKey(
6666

6767
#### From an Unencrypted Key File
6868

69-
A private key resource can be created from an unencrypted key file by calling the `EncryptionUtils::loadDecryptionKey` method:
69+
A private key resource can be created from an unencrypted key file by calling `EncryptionUtils::loadDecryptionKey` the following way:
7070
```php
7171
use Mastercard\Developer\Utils\EncryptionUtils;
7272
// ...

0 commit comments

Comments
 (0)