blob: a807fa7fc510407deca344e44fc1ce98cd72e609 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Utilities.IO;
using Org.BouncyCastle.Security;
namespace Org.BouncyCastle.Cms
{
internal class SigOutputStream
: BaseOutputStream
{
private readonly ISigner sig;
internal SigOutputStream(ISigner sig)
{
this.sig = sig;
}
public override void WriteByte(byte b)
{
try
{
sig.Update(b);
}
catch (SignatureException e)
{
throw new CmsStreamException("signature problem: " + e);
}
}
public override void Write(byte[] b, int off, int len)
{
try
{
sig.BlockUpdate(b, off, len);
}
catch (SignatureException e)
{
throw new CmsStreamException("signature problem: " + e);
}
}
}
}
|