Simplify namespace usage

This commit is contained in:
Matt Nadareski
2025-01-02 16:00:56 -05:00
parent f7346b20e1
commit dc3cb0be5d

View File

@@ -5,9 +5,6 @@ using System.IO.Hashing;
using System.Security.Cryptography;
using Aaru.Checksums;
using Aaru.CommonTypes.Interfaces;
#if NET7_0_OR_GREATER
using Blake3;
#endif
using SabreTools.Hashing.Checksum;
using SabreTools.Hashing.CryptographicHash;
using SabreTools.Hashing.NonCryptographicHash;
@@ -127,7 +124,7 @@ namespace SabreTools.Hashing
HashType.Adler32 => new Adler32(),
#if NET7_0_OR_GREATER
HashType.BLAKE3 => new Blake3HashAlgorithm(),
HashType.BLAKE3 => new Blake3.Blake3HashAlgorithm(),
#endif
HashType.CRC1_ZERO => new Crc(StandardDefinitions.CRC1_ZERO),