Click or drag to resize
MimeKit

MultipartEncryptedDecrypt(OpenPgpContext, DigitalSignatureCollection, CancellationToken) Method

Decrypts the MultipartEncrypted part.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public MimeEntity Decrypt(
	OpenPgpContext ctx,
	out DigitalSignatureCollection signatures,
	CancellationToken cancellationToken = default
)

Parameters

ctx  OpenPgpContext
The OpenPGP cryptography context to use for decrypting.
signatures  DigitalSignatureCollection
A list of digital signatures if the data was both signed and encrypted.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

MimeEntity
The decrypted entity.
Exceptions
ExceptionCondition
ArgumentNullExceptionctx is null.
FormatException

The protocol parameter was not specified.

-or-

The multipart is malformed in some way.

NotSupportedException The provided OpenPgpContext does not support the protocol parameter.
PrivateKeyNotFoundException The private key could not be found to decrypt the encrypted data.
ObjectDisposedException The MultipartEncrypted has been disposed.
OperationCanceledException

The user chose to cancel the password prompt.

-or-

The operation was cancelled via the cancellation token.

UnauthorizedAccessException 3 bad attempts were made to unlock the secret key.
Remarks
Decrypts the MultipartEncrypted and extracts any digital signatures in cases where the content was also signed.
See Also