diff --git a/BeefLibs/corlib/src/Security/Cryptography/SHA256.bf b/BeefLibs/corlib/src/Security/Cryptography/SHA256.bf index 90d79f68..32c21a6a 100644 --- a/BeefLibs/corlib/src/Security/Cryptography/SHA256.bf +++ b/BeefLibs/corlib/src/Security/Cryptography/SHA256.bf @@ -134,7 +134,7 @@ namespace System.Security.Cryptography mData = .(?); } - void Transform() mut + void Transform() { uint32 a, b, c, d, e, f, g, h, i, j, t1, t2; uint32[64] m = ?; @@ -177,7 +177,7 @@ namespace System.Security.Cryptography mState[7] += h; } - public void Update(Span data) mut + public void Update(Span data) { for (int i = 0; i < data.Length; ++i) { @@ -192,7 +192,7 @@ namespace System.Security.Cryptography } } - public SHA256Hash Finish() mut + public SHA256Hash Finish() { int i = mDataLen;