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.
45 lines
1.1 KiB
45 lines
1.1 KiB
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
using System.IO;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
||
|
{
|
||
|
public class BerOctetStringParser
|
||
|
: Asn1OctetStringParser
|
||
|
{
|
||
|
private readonly Asn1StreamParser _parser;
|
||
|
|
||
|
internal BerOctetStringParser(Asn1StreamParser parser)
|
||
|
{
|
||
|
_parser = parser;
|
||
|
}
|
||
|
|
||
|
public Stream GetOctetStream()
|
||
|
{
|
||
|
return new ConstructedOctetStream(_parser);
|
||
|
}
|
||
|
|
||
|
public Asn1Object ToAsn1Object()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return Parse(_parser);
|
||
|
}
|
||
|
catch (IOException e)
|
||
|
{
|
||
|
throw new Asn1ParsingException("IOException converting stream to byte array: " + e.Message, e);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal static BerOctetString Parse(Asn1StreamParser sp)
|
||
|
{
|
||
|
return new BerOctetString(Streams.ReadAll(new ConstructedOctetStream(sp)));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|