Exemplo n.º 1
0
 public static void Update(this IDigest digest, byte[] input)
 {
     digest.BlockUpdate(input, 0, input.Length);
 }
Exemplo n.º 2
0
 public static void Update(this IDigest digest, byte[] input, int offset, int length)
 {
     digest.BlockUpdate(input, offset, length);
 }
Exemplo n.º 3
0
 public static void Update(this IMac hmac, byte[] input)
 {
     hmac.BlockUpdate(input, 0, input.Length);
 }