Files
XRLib/Assets/Plugins/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/ASN1OctetStringParser.cs

18 lines
509 B
C#
Raw Normal View History

2025-06-04 23:10:11 +09:00
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.IO;
namespace Best.HTTP.SecureProtocol.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();
}
}
#pragma warning restore
#endif