Skip to content

Commit 5cf25f8

Browse files
Fixed incorrect encodings. (#50)
1 parent 96e1431 commit 5cf25f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

OnixLabs.Security.Cryptography.UnitTests/HashAlgorithmExtensionTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public async void HashAlgorithmComputeHashAsyncShouldProduceExpectedResultWithTw
4242
{
4343
// Given
4444
using HashAlgorithm algorithm = SHA256.Create();
45-
Stream data = new MemoryStream(Encoding.Default.GetBytes("abc123"));
45+
Stream data = new MemoryStream("abc123"u8.ToArray());
4646
const string expected = "efaaeb3b1d1d85e8587ef0527ca43b9575ce8149ba1ee41583d3d19bd130daf8";
4747

4848
// When

OnixLabs.Security.Cryptography/Extensions.HashAlgorithm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static byte[] ComputeHash(this HashAlgorithm algorithm, byte[] data, int
6060
/// <param name="rounds">The number of rounds that the input data should be hashed.</param>
6161
/// <returns>Returns the computed hash value.</returns>
6262
public static byte[] ComputeHash(this HashAlgorithm algorithm, ReadOnlySpan<char> data, Encoding? encoding = null, int rounds = 1) =>
63-
algorithm.ComputeHash((encoding ?? Encoding.Default).GetBytes(data.ToArray()), rounds);
63+
algorithm.ComputeHash((encoding ?? Encoding.UTF8).GetBytes(data.ToArray()), rounds);
6464

6565
/// <summary>
6666
/// Computes the hash value for the specified <see cref="Stream"/> object.

0 commit comments

Comments
 (0)