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

WriteByte() public method

public WriteByte ( byte b ) : void
b byte
return void
		public override void WriteByte(byte b)
		{
			try
			{
				sig.Update(b);
			}
			catch (SignatureException e)
			{
				throw new CmsStreamException("signature problem: " + e);
			}
		}