decrypt()
Last updated
Was this helpful?
Last updated
Was this helpful?
The decrypt
function decrypts the given Base64-encoded ciphertext
using the given private_key
(see ). It uses the . The optional parameter passphrase
is the passphrase for decrypting an encrypted private key (default ""
). For an unencrypted private key the passphrase
should be omitted or ""
.
The function returns the decrypted data as a string.
Private keys should be supplied in using encoding:
for an unencrypted key – or for an encrypted (i.e. passphrase-secured) key:
For such PKCS #8 keys the -----BEGIN …
and -----END …
boundaries are optional. They are required, however, if the private key is stored together with other data, for example the accompanying public key.
formatted RSA private keys with boundaries (-----BEGIN RSA PRIVATE KEY-----
) are also supported.