AirScout/BouncyCastle/crypto/src/asn1/ASN1OctetStringParser.cs

14 wiersze
359 B
C#

using System;
using System.IO;
namespace Org.BouncyCastle.Asn1
{
public interface Asn1OctetStringParser
: IAsn1Convertible
{
/// <summary>Return the content of the OCTET STRING as a <see cref="Stream"/>.</summary>
/// <returns>A <see cref="Stream"/> represnting the OCTET STRING's content.</returns>
Stream GetOctetStream();
}
}