Allow NormalizeHashData to be public

This commit is contained in:
Matt Nadareski
2026-03-24 20:50:56 -04:00
parent 9cdee80bed
commit 6b684cbc3b

View File

@@ -230,7 +230,7 @@ namespace SabreTools.Text.Extensions
/// <summary>
/// Normalize a hash string and pad to the correct size
/// </summary>
private static string? NormalizeHashData(string? hash, int expectedLength)
public static string? NormalizeHashData(string? hash, int expectedLength)
{
// If we have a known blank hash, return blank
if (hash is null)