up
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
|
||||
using System.IO;
|
||||
|
||||
using Org.BouncyCastle.Utilities.IO;
|
||||
|
||||
namespace Org.BouncyCastle.Crypto.Tls
|
||||
{
|
||||
internal class SignerInputBuffer
|
||||
: MemoryStream
|
||||
{
|
||||
internal void UpdateSigner(ISigner s)
|
||||
{
|
||||
WriteTo(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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user