mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00

Code cleanup in Lib WIP new VM for OpendatabaseControl WIP KDBX4 file save - still not working
13 lines
242 B
C#
13 lines
242 B
C#
using Org.BouncyCastle.Crypto.Digests;
|
|
|
|
namespace ModernKeePassLib.Cryptography.Hash
|
|
{
|
|
public class SHA512Managed: HashAlgorithm
|
|
{
|
|
public SHA512Managed()
|
|
{
|
|
Digest = new Sha512Digest();
|
|
}
|
|
}
|
|
}
|