Initial Commit
This commit is contained in:
36
iTechSharp/srcbc/asn1/DEROctetStringParser.cs
Normal file
36
iTechSharp/srcbc/asn1/DEROctetStringParser.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using Org.BouncyCastle.Utilities.IO;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1
|
||||
{
|
||||
public class DerOctetStringParser
|
||||
: Asn1OctetStringParser
|
||||
{
|
||||
private readonly DefiniteLengthInputStream stream;
|
||||
|
||||
internal DerOctetStringParser(
|
||||
DefiniteLengthInputStream stream)
|
||||
{
|
||||
this.stream = stream;
|
||||
}
|
||||
|
||||
public Stream GetOctetStream()
|
||||
{
|
||||
return stream;
|
||||
}
|
||||
|
||||
public Asn1Object ToAsn1Object()
|
||||
{
|
||||
try
|
||||
{
|
||||
return new DerOctetString(stream.ToArray());
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
throw new InvalidOperationException("IOException converting stream to byte array: " + e.Message, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user