You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
65 lines
1.9 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
using System.Diagnostics; |
|
using System.Globalization; |
|
using System.IO; |
|
using System.Text; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.X509; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl |
|
{ |
|
/// <remarks>General purpose writer for OpenSSL PEM objects.</remarks> |
|
public class PemWriter |
|
: BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter |
|
{ |
|
/// <param name="writer">The TextWriter object to write the output to.</param> |
|
public PemWriter( |
|
TextWriter writer) |
|
: base(writer) |
|
{ |
|
} |
|
|
|
public void WriteObject( |
|
object obj) |
|
{ |
|
try |
|
{ |
|
base.WriteObject(new MiscPemGenerator(obj)); |
|
} |
|
catch (PemGenerationException e) |
|
{ |
|
if (e.InnerException is IOException) |
|
throw (IOException)e.InnerException; |
|
|
|
throw e; |
|
} |
|
} |
|
|
|
public void WriteObject( |
|
object obj, |
|
string algorithm, |
|
char[] password, |
|
SecureRandom random) |
|
{ |
|
base.WriteObject(new MiscPemGenerator(obj, algorithm, password, random)); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|