Class SmimeInfo
An S/MIME email config.
public class SmimeInfo : IDirectResponseSchema
- Inheritance
-
SmimeInfo
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
SmimeInfo()
public SmimeInfo()
Properties
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
EncryptedKeyPassword
Encrypted key password, when key is encrypted.
public virtual string EncryptedKeyPassword { get; set; }
Property Value
Expiration
When the certificate expires (in milliseconds since epoch).
public virtual long? Expiration { get; set; }
Property Value
- long?
Id
The immutable ID for the SmimeInfo.
public virtual string Id { get; set; }
Property Value
IsDefault
Whether this SmimeInfo is the default one for this user's send-as address.
public virtual bool? IsDefault { get; set; }
Property Value
- bool?
IssuerCn
The S/MIME certificate issuer's common name.
public virtual string IssuerCn { get; set; }
Property Value
Pem
PEM formatted X509 concatenated certificate string (standard base64 encoding). Format used for returning key, which includes public key as well as certificate chain (not private key).
public virtual string Pem { get; set; }
Property Value
Pkcs12
PKCS#12 format containing a single private/public key pair and certificate chain. This format is only accepted from client for creating a new SmimeInfo and is never returned, because the private key is not intended to be exported. PKCS#12 may be encrypted, in which case encryptedKeyPassword should be set appropriately.
public virtual string Pkcs12 { get; set; }