You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
785 B
37 lines
785 B
using System;
|
|
using System.IO;
|
|
|
|
using Org.BouncyCastle.Utilities.IO;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Tls
|
|
{
|
|
internal class SignerInputBuffer
|
|
: MemoryStream
|
|
{
|
|
internal void UpdateSigner(ISigner s)
|
|
{
|
|
Streams.WriteBufTo(this, new SigStream(s));
|
|
}
|
|
|
|
private class SigStream
|
|
: BaseOutputStream
|
|
{
|
|
private readonly ISigner s;
|
|
|
|
internal SigStream(ISigner s)
|
|
{
|
|
this.s = s;
|
|
}
|
|
|
|
public override void WriteByte(byte b)
|
|
{
|
|
s.Update(b);
|
|
}
|
|
|
|
public override void Write(byte[] buf, int off, int len)
|
|
{
|
|
s.BlockUpdate(buf, off, len);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|