blob: 07a3ac9091c86ca0e4f5127ebd2b79e86af7d38c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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();
}
}
|