57 lines
2.0 KiB
C#
57 lines
2.0 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
using System.IO;
|
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters;
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
|
|
{
|
|
public class DefaultTlsEncryptionCredentials
|
|
: AbstractTlsEncryptionCredentials
|
|
{
|
|
protected readonly TlsContext mContext;
|
|
protected readonly Certificate mCertificate;
|
|
protected readonly AsymmetricKeyParameter mPrivateKey;
|
|
|
|
public DefaultTlsEncryptionCredentials(TlsContext context, Certificate certificate,
|
|
AsymmetricKeyParameter privateKey)
|
|
{
|
|
if (certificate == null)
|
|
throw new ArgumentNullException("certificate");
|
|
if (certificate.IsEmpty)
|
|
throw new ArgumentException("cannot be empty", "certificate");
|
|
if (privateKey == null)
|
|
throw new ArgumentNullException("'privateKey' cannot be null");
|
|
if (!privateKey.IsPrivate)
|
|
throw new ArgumentException("must be private", "privateKey");
|
|
|
|
if (privateKey is RsaKeyParameters)
|
|
{
|
|
}
|
|
else
|
|
{
|
|
throw new ArgumentException("type not supported: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(privateKey), "privateKey");
|
|
}
|
|
|
|
this.mContext = context;
|
|
this.mCertificate = certificate;
|
|
this.mPrivateKey = privateKey;
|
|
}
|
|
|
|
public override Certificate Certificate
|
|
{
|
|
get { return mCertificate; }
|
|
}
|
|
|
|
/// <exception cref="IOException"></exception>
|
|
public override byte[] DecryptPreMasterSecret(byte[] encryptedPreMasterSecret)
|
|
{
|
|
return TlsRsaUtilities.SafeDecryptPreMasterSecret(mContext, (RsaKeyParameters)mPrivateKey, encryptedPreMasterSecret);
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|