Fix modern .NET builds

This commit is contained in:
Matt Nadareski
2025-01-06 00:40:11 -05:00
parent 1e11e9abb8
commit e117892f37

View File

@@ -37,7 +37,7 @@ namespace SabreTools.Hashing
#endif
#if NET8_0_OR_GREATER
Shake128 s128 => s128.GetCurrentHash(32),
Shake256 s256 => s128.GetCurrentHash(64),
Shake256 s256 => s256.GetCurrentHash(64),
#endif
_ => null,
};