Org.BouncyCastle.Cms.SigOutputStream.Write C# (CSharp) Method

Write() public method

public Write ( byte b, int off, int len ) : void
b byte
off int
len int
return void
		public override void Write(byte[] b, int off, int len)
		{
			try
			{
				sig.BlockUpdate(b, off, len);
			}
			catch (SignatureException e)
			{
				throw new CmsStreamException("signature problem: " + e);
			}
		}
	}