Org.BouncyCastle.Crypto.Digests.NullDigest.DoFinal C# (CSharp) Method

DoFinal() public method

public DoFinal ( byte outBytes, int outOff ) : int
outBytes byte
outOff int
return int
		public int DoFinal(byte[] outBytes, int outOff)
		{
			byte[] res = bOut.ToArray();
			res.CopyTo(outBytes, outOff);
			Reset();
			return res.Length;
		}