Enum 1286 X509 Content Type in 28
- App
- System Application
- Namespace
- System.Security.Encryption
Versions171819202122232425262728latest
Source in 28
src/System Application/App/Cryptography Management/src/X509ContentType.Enum.al47 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Security.Encryption;
/// <summary>Specifies the format of an X.509 certificate.</summary>
enum 1286 "X509 Content Type"
{
Extensible = false;
/// <summary>
/// Specifies unknown X.509 certificate.
/// </summary>
value(0; Unknown) { }
/// <summary>
/// Specifies a single X.509 certificate.
/// </summary>
value(1; Cert) { }
/// <summary>
/// Specifies a single serialized X.509 certificate.
/// </summary>
value(2; PFXSerializedCert) { }
/// <summary>
/// Specifies a PKCS #12-formatted certificate. The Pkcs12 value is identical to the Pfx value.
/// </summary>
value(3; Pkcs12) { }
/// <summary>
/// Specifies a serialized store.
/// </summary>
value(4; SerializedStore) { }
/// <summary>
/// Specifies a PKCS #7-formatted certificate.
/// </summary>
value(5; Pkcs7) { }
/// <summary>
/// Specifies an Authenticode X.509 certificate.
/// </summary>
value(6; Authenticode) { }
}Values, 7
| Id | Name | Obsolete |
|---|---|---|
| 0 | Unknown | - |
| 1 | Cert | - |
| 2 | PFXSerializedCert | - |
| 3 | Pkcs12 | - |
| 4 | SerializedStore | - |
| 5 | Pkcs7 | - |
| 6 | Authenticode | - |