File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
8888Certificate 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
9999PrivateKey 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
109109PrivateKey decryptionKey = EncryptionUtils . loadDecryptionKey(" <insert key file path>" );
110110```
You can’t perform that action at this time.
0 commit comments