mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
13 lines
241 B
C#
13 lines
241 B
C#
|
using Org.BouncyCastle.Crypto.Digests;
|
|||
|
|
|||
|
namespace ModernKeePassLib.Cryptography.Hash
|
|||
|
{
|
|||
|
public class SHA256Managed : DigestManaged
|
|||
|
{
|
|||
|
public SHA256Managed()
|
|||
|
{
|
|||
|
Hash = new Sha256Digest();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|