Sharpen.MessageDigest.Update C# (CSharp) Method

Update() public abstract method

public abstract Update ( byte b ) : void
b byte
return void
		public abstract void Update (byte[] b);
		public abstract void Update (byte b);

Same methods

MessageDigest::Update ( byte b, int offset, int len ) : void

Usage Example

 public override void Write(int b)
 {
     if (@on)
     {
         digest.Update((byte)b);
     }
     os.Write(b);
 }
All Usage Examples Of Sharpen.MessageDigest::Update