File: Managed\HashAlgorithmExtensions.cs
Web Access
Project: src\src\DataProtection\DataProtection\src\Microsoft.AspNetCore.DataProtection.csproj (Microsoft.AspNetCore.DataProtection)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Security.Cryptography;
using Microsoft.AspNetCore.Cryptography;
 
namespace Microsoft.AspNetCore.DataProtection.Managed;
 
internal static class HashAlgorithmExtensions
{
    public static int GetDigestSizeInBytes(this HashAlgorithm hashAlgorithm)
    {
        var hashSizeInBits = hashAlgorithm.HashSize;
        CryptoUtil.Assert(hashSizeInBits >= 0 && hashSizeInBits % 8 == 0, "hashSizeInBits >= 0 && hashSizeInBits % 8 == 0");
        return hashSizeInBits / 8;
    }
}