CertStoreType Enumeration |
Defines certificate store types.
Namespace: MailBee.SecurityAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public enum CertStoreType
Public Enumeration CertStoreType
Members
| Member name | Value | Description |
---|
| PublicFile | 8 |
A file in SST or PKCS #7 (.P7B) format which contains certificates with public keys only.
|
| System | 10 |
Standard system store (stored in Windows registry, examples are Personal, OtherPeople, etc).
May contain certificates with public and private keys.
|
| Memory | 2 |
Temporary memory storage. Often used to create a new store which can then be saved into a file.
May contain certificates with public and private keys.
|
| Pkcs7Bytes | 5 |
A byte array in PKCS #7 (.P7B) format. Used with CertificateStore(Byte, CertStoreType, CryptoServiceProvider) overload.
|
| SerializedBytes | 6 |
A byte array in SST format. Used with CertificateStore(Byte, CertStoreType, CryptoServiceProvider) overload.
|
| Ldap | 16 |
A storage populated with certificates, CRLs, and CTLs obtained from the results of the query specified by an LDAP URL.
To perform write operations for the store, the URL must specify a BASE query with no filter and a single attribute.
|
| PfxFile | 17 |
A file in PFX (Personal Information Exchange, PKCS #12) format which may contain certificates with public and private keys.
PFX files can be protected with a password.
|
| PfxBytes | 18 |
A byte array in PFX format. All characteristics of PfxFile apply. To open a certificate store from PFX bytes array,
use CertificateStore(Byte, String) constructor.
|
Remarks See Also