//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Services.Constants;
///
/// Public key types.
///
public enum PublicKeyType
{
///
/// SPKI/x509 format.
///
SpkiX509PublicKey,
///
/// PKCS #1 type.
///
Pkcs1PublicKey
}