Files
tianrunCRM/Assets/BestHTTP/SecureProtocol/util/io/pem/PemObjectGenerator.cs
2020-07-09 08:50:24 +08:00

18 lines
351 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
namespace Org.BouncyCastle.Utilities.IO.Pem
{
public interface PemObjectGenerator
{
/// <returns>
/// A <see cref="PemObject"/>
/// </returns>
/// <exception cref="PemGenerationException"></exception>
PemObject Generate();
}
}
#endif