- Initial commit
This commit is contained in:
40
Runtime/3rdParty/BouncyCastle/tls/crypto/impl/bc/BcTlsSigner.cs
vendored
Normal file
40
Runtime/3rdParty/BouncyCastle/tls/crypto/impl/bc/BcTlsSigner.cs
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto.Impl.BC
|
||||
{
|
||||
public abstract class BcTlsSigner
|
||||
: TlsSigner
|
||||
{
|
||||
protected readonly BcTlsCrypto m_crypto;
|
||||
protected readonly AsymmetricKeyParameter m_privateKey;
|
||||
|
||||
protected BcTlsSigner(BcTlsCrypto crypto, AsymmetricKeyParameter privateKey)
|
||||
{
|
||||
if (crypto == null)
|
||||
throw new ArgumentNullException("crypto");
|
||||
if (privateKey == null)
|
||||
throw new ArgumentNullException("privateKey");
|
||||
if (!privateKey.IsPrivate)
|
||||
throw new ArgumentException("must be private", "privateKey");
|
||||
|
||||
this.m_crypto = crypto;
|
||||
this.m_privateKey = privateKey;
|
||||
}
|
||||
|
||||
public virtual byte[] GenerateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash)
|
||||
{
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
public virtual TlsStreamSigner GetStreamSigner(SignatureAndHashAlgorithm algorithm)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user