mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
Code cleanup in KeePassLib Code cleanup in ModernKeePass.Tests Argon2Kdf files can now be opened WIP - Argon2kdf files are corrupted on write
13 lines
243 B
C#
13 lines
243 B
C#
using Org.BouncyCastle.Crypto.Digests;
|
|
|
|
namespace ModernKeePassLib.Cryptography.Hash
|
|
{
|
|
public class SHA256Managed : DigestManaged
|
|
{
|
|
public SHA256Managed()
|
|
{
|
|
Digest = new Sha256Digest();
|
|
}
|
|
}
|
|
}
|