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