blob: 8891dbc2cb1d26a6683e92548785f8216405f408 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Utilities.IO;
namespace Org.BouncyCastle.Cms
{
internal class MacOutputStream
: BaseOutputStream
{
private readonly IMac mac;
internal MacOutputStream(IMac mac)
{
this.mac = mac;
}
public override void Write(byte[] b, int off, int len)
{
mac.BlockUpdate(b, off, len);
}
public override void WriteByte(byte b)
{
mac.Update(b);
}
}
}
|