Org.BouncyCastle.Crypto.Signers.PssSigner.Update C# (CSharp) Method

Update() public method

update the internal digest with the byte b
public Update ( byte input ) : void
input byte
return void
		public virtual void Update(
			byte input)
		{
			contentDigest1.Update(input);
		}