mirror of
https://github.com/SabreTools/SabreTools.Hashing.git
synced 2026-04-17 11:42:59 +00:00
Because the ordering of the enum was not guaranteed, both because of variances in .NET version and even library version, any change could mean that invisible version bumps would misalign. This attempts to fix that by converting HashType from an enum to a static class with a set of constants instead. This allows logical groupings and orderings without it affecting the values of each item.