- Initial commit
This commit is contained in:
21
Runtime/3rdParty/BouncyCastle/util/io/pem/PemObjectParser.cs
vendored
Normal file
21
Runtime/3rdParty/BouncyCastle/util/io/pem/PemObjectParser.cs
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem
|
||||
{
|
||||
public interface PemObjectParser
|
||||
{
|
||||
/// <param name="obj">
|
||||
/// A <see cref="PemObject"/>
|
||||
/// </param>
|
||||
/// <returns>
|
||||
/// An <see cref="object"/>
|
||||
/// </returns>
|
||||
/// <exception cref="IOException"></exception>
|
||||
object ParseObject(PemObject obj);
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user