Multipart |
public static Task<MultipartEncrypted> SignAndEncryptAsync( PgpSecretKey signer, DigestAlgorithm digestAlgo, IEnumerable<PgpPublicKey> recipients, MimeEntity entity, CancellationToken cancellationToken = default )
Exception | Condition |
---|---|
ArgumentNullException | signer is null. -or- recipients is null. -or- entity is null. |
ArgumentException | signer cannot be used for signing. -or- One or more of the recipient keys cannot be used for encrypting. -or- No recipients were specified. |
ArgumentOutOfRangeException | The digestAlgo was out of range. |
NotSupportedException | A default OpenPgpContext has not been registered. -or- The digestAlgo is not supported. |
ObjectDisposedException | entity has been disposed. |
OperationCanceledException | The user chose to cancel the password prompt. -or- The operation was canceled via the cancellation token. |
UnauthorizedAccessException | 3 bad attempts were made to unlock the secret key. |