SmimeSet256BitCrypto Method
Sets the cryptographic algorithms MailBee will use for signing and encryption to SHA-256 and AES-256.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.6.0 build 690 for .NET 4.5
Syntax
public void Set256BitCrypto()
Remarks

MailBee by default uses SHA-1 (for signing) and Triple-DES (for encryption) which are widely supported but often considered weak. You can upgrade the security level to 256-bit cryptography by using this method (or can manually set HashAlgorithm and EncryptionAlgorithm properties for a more fine-tuned approach, e.g. SHA-512 or whatever).

This only affects signing/encryption (i.e. producing messages). Parsing (verifying signatures and decryption) is not affected.

See Also