18 lines
405 B
C#
18 lines
405 B
C#
#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
|