// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.AspNetCore.Cryptography.KeyDerivation
{
///
/// Specifies the PRF which should be used for the key derivation algorithm.
///
public enum KeyDerivationPrf
{
///
/// The HMAC algorithm (RFC 2104) using the SHA-1 hash function (FIPS 180-4).
///
HMACSHA1,
///
/// The HMAC algorithm (RFC 2104) using the SHA-256 hash function (FIPS 180-4).
///
HMACSHA256,
///
/// The HMAC algorithm (RFC 2104) using the SHA-512 hash function (FIPS 180-4).
///
HMACSHA512,
}
}