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

E() private method

private E ( byte key, byte s, int sOff, byte input, int inOff ) : void
key byte
s byte
sOff int
input byte
inOff int
return void
		private void E(byte[] key, byte[] s, int sOff, byte[] input, int inOff)
		{
			cipher.Init(true, new KeyParameter(key));

			cipher.ProcessBlock(input, inOff, s, sOff);
		}