22 lines
443 B
C#
22 lines
443 B
C#
|
// <copyright file="PublicKeyType.cs" company="alveus.dev">
|
||
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
||
|
// </copyright>
|
||
|
|
||
|
namespace Astral.Services.Constants;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Public key types.
|
||
|
/// </summary>
|
||
|
public enum PublicKeyType
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// SPKI/x509 format.
|
||
|
/// </summary>
|
||
|
SpkiX509PublicKey,
|
||
|
|
||
|
/// <summary>
|
||
|
/// PKCS #1 type.
|
||
|
/// </summary>
|
||
|
Pkcs1PublicKey
|
||
|
}
|