<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />

Gost3411_2012_512Digest

using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Crypto.Digests { public class Gost3411_2012_512Digest : Gost3411_2012Digest { private static readonly byte[] IV = new byte[64]; public override string AlgorithmName => "GOST3411-2012-512"; public Gost3411_2012_512Digest() : base(IV) { } public Gost3411_2012_512Digest(Gost3411_2012_512Digest other) : base(IV) { Reset(other); } public override int GetDigestSize() { return 64; } public override IMemoable Copy() { return new Gost3411_2012_512Digest(this); } } }