All uses of hashes should now be lower case (#122)

This commit is contained in:
Michael Green
2023-09-20 09:32:40 +10:00
committed by GitHub
parent 7eb418d6a2
commit f2c58bb172
6 changed files with 12 additions and 12 deletions

View File

@@ -61,7 +61,7 @@ namespace gaseous_tools
{
get
{
return _md5hash;
return _md5hash.ToLower();
}
set
{
@@ -73,7 +73,7 @@ namespace gaseous_tools
{
get
{
return _sha1hash;
return _sha1hash.ToLower();
}
set
{