mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
added IParseable interface and applied it to all applicable types
This commit is contained in:
parent
3e8d90d300
commit
0a6062ba02
18 changed files with 169 additions and 18 deletions
|
@ -32,7 +32,7 @@ namespace System.Security.Cryptography
|
|||
}
|
||||
}
|
||||
|
||||
struct MD5Hash
|
||||
struct MD5Hash : IParseable<MD5Hash>
|
||||
{
|
||||
public uint8[16] mHash;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ using System.IO;
|
|||
|
||||
namespace System.Security.Cryptography
|
||||
{
|
||||
struct SHA256Hash
|
||||
struct SHA256Hash : IParseable<SHA256Hash>
|
||||
{
|
||||
public uint8[32] mHash;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue