Org.BouncyCastle.Crypto.Digests.Gost3411Digest.Gost3411Digest C# (CSharp) Method

Gost3411Digest() public method

public Gost3411Digest ( ) : System
return System
		public Gost3411Digest()
		{
			// TODO Is it possible to declare multi-dimensional arrays as in Java?
			for (int i = 0; i < 4; ++i)
			{
				C[i] = new byte[32];
			}

			cipher.Init(true, new ParametersWithSBox(null, Gost28147Engine.GetSBox("D-A")));

			Reset();
		}

Same methods

Gost3411Digest::Gost3411Digest ( Gost3411Digest t ) : System