Org.BouncyCastle.Crypto.BufferedIesCipher.DoFinal C# (CSharp) Method

DoFinal() public method

public DoFinal ( ) : byte[]
return byte[]
		public override byte[] DoFinal()
		{
			byte[] buf = buffer.ToArray();

			Reset();

			return engine.ProcessBlock(buf, 0, buf.Length);
		}

Same methods

BufferedIesCipher::DoFinal ( byte input, int inOff, int length ) : byte[]