コード例 #1
0
 public static void Update(this IDigest digest, byte[] input)
 {
     digest.BlockUpdate(input, 0, input.Length);
 }
コード例 #2
0
 public static void Update(this IDigest digest, byte[] input, int offset, int length)
 {
     digest.BlockUpdate(input, offset, length);
 }
コード例 #3
0
 public static void Update(this IMac hmac, byte[] input)
 {
     hmac.BlockUpdate(input, 0, input.Length);
 }