Skip to content

Commit e23548e

Browse files
authored
Change Hash to AsByteArray()
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent fcc7287 commit e23548e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Algorithms/Argon2id/Argon2idDecoder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ public static byte[] DecodeArgon2id(this IHashValue val)
8484
throw new ArgumentNullException(nameof(val));
8585
}
8686

87-
return Decode(val.Hash);
87+
return Decode(val.AsByteArray());
8888
}
8989
}
9090
}
91+

0 commit comments

Comments
 (0)