Skip to content

Commit 4dc8d12

Browse files
authored
Clean-up (Part 2)
1 parent ab11b00 commit 4dc8d12

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
@@ -83,7 +83,7 @@ Available engine classes:
8383

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

86-
A `Certificate` object can be created from a file by calling the `EncryptionUtils.loadEncryptionCertificate` method:
86+
A `Certificate` object can be created from a file by calling `EncryptionUtils.loadEncryptionCertificate`:
8787
```java
8888
Certificate encryptionCertificate = EncryptionUtils.loadEncryptionCertificate("<insert certificate file path>");
8989
```
@@ -92,9 +92,9 @@ Supported certificate formats: PEM, DER.
9292

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

95-
#### From a PKCS#12 File
95+
#### From a PKCS#12 Key Store
9696

97-
A `PrivateKey` object can be created from a PKCS#12 file by calling the `EncryptionUtils.loadDecryptionKey` method:
97+
A `PrivateKey` object can be created from a PKCS#12 key store by calling `EncryptionUtils.loadDecryptionKey` the following way:
9898
```java
9999
PrivateKey decryptionKey = EncryptionUtils.loadDecryptionKey(
100100
"<insert PKCS#12 key file path>",
@@ -104,7 +104,7 @@ PrivateKey decryptionKey = EncryptionUtils.loadDecryptionKey(
104104

105105
#### From an Unencrypted Key File
106106

107-
A `PrivateKey` object can be created from an unencrypted key file by calling the `EncryptionUtils.loadDecryptionKey` method:
107+
A `PrivateKey` object can be created from an unencrypted key file by calling `EncryptionUtils.loadDecryptionKey` the following way:
108108
```java
109109
PrivateKey decryptionKey = EncryptionUtils.loadDecryptionKey("<insert key file path>");
110110
```

0 commit comments

Comments
 (0)