- Initial commit
This commit is contained in:
63
Runtime/3rdParty/BouncyCastle/crypto/agreement/ECDHWithKdfBasicAgreement.cs
vendored
Normal file
63
Runtime/3rdParty/BouncyCastle/crypto/agreement/ECDHWithKdfBasicAgreement.cs
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement.Kdf;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Security;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement
|
||||
{
|
||||
public class ECDHWithKdfBasicAgreement
|
||||
: ECDHBasicAgreement
|
||||
{
|
||||
private readonly string algorithm;
|
||||
private readonly IDerivationFunction kdf;
|
||||
|
||||
public ECDHWithKdfBasicAgreement(
|
||||
string algorithm,
|
||||
IDerivationFunction kdf)
|
||||
{
|
||||
if (algorithm == null)
|
||||
throw new ArgumentNullException("algorithm");
|
||||
if (kdf == null)
|
||||
throw new ArgumentNullException("kdf");
|
||||
|
||||
this.algorithm = algorithm;
|
||||
this.kdf = kdf;
|
||||
}
|
||||
|
||||
public override BigInteger CalculateAgreement(
|
||||
ICipherParameters pubKey)
|
||||
{
|
||||
// Note that the ec.KeyAgreement class in JCE only uses kdf in one
|
||||
// of the engineGenerateSecret methods.
|
||||
|
||||
BigInteger result = base.CalculateAgreement(pubKey);
|
||||
|
||||
int keySize = GeneratorUtilities.GetDefaultKeySize(algorithm);
|
||||
|
||||
DHKdfParameters dhKdfParams = new DHKdfParameters(
|
||||
new DerObjectIdentifier(algorithm),
|
||||
keySize,
|
||||
BigIntToBytes(result));
|
||||
|
||||
kdf.Init(dhKdfParams);
|
||||
|
||||
byte[] keyBytes = new byte[keySize / 8];
|
||||
kdf.GenerateBytes(keyBytes, 0, keyBytes.Length);
|
||||
|
||||
return new BigInteger(1, keyBytes);
|
||||
}
|
||||
|
||||
private byte[] BigIntToBytes(BigInteger r)
|
||||
{
|
||||
int byteLength = X9IntegerConverter.GetByteLength(privKey.Parameters.Curve);
|
||||
return X9IntegerConverter.IntegerToBytes(r, byteLength);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user