| BouncyCastleCertificateExtensionsGetEncryptionAlgorithms Method |
Get the encryption algorithms that can be used with an X.509 certificate.
Namespace: MimeKit.CryptographyAssembly: MimeKit (in MimeKit.dll) Version: 4.7.1
Syntax public static EncryptionAlgorithm[] GetEncryptionAlgorithms(
this X509Certificate certificate
)
Parameters
- certificate X509Certificate
- The X.509 certificate.
Return Value
EncryptionAlgorithmThe encryption algorithms.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
X509Certificate. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions Remarks Scans the X.509 certificate for the S/MIME capabilities extension. If found,
the supported encryption algorithms will be decoded and returned.
If no extension can be found, the TripleDes
algorithm is returned.
See Also