12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement.Kdf
- {
- public class DHKdfParameters
- : IDerivationParameters
- {
- private readonly DerObjectIdentifier algorithm;
- private readonly int keySize;
- private readonly byte[] z;
- private readonly byte[] extraInfo;
- public DHKdfParameters(
- DerObjectIdentifier algorithm,
- int keySize,
- byte[] z)
- : this(algorithm, keySize, z, null)
- {
- }
- public DHKdfParameters(
- DerObjectIdentifier algorithm,
- int keySize,
- byte[] z,
- byte[] extraInfo)
- {
- this.algorithm = algorithm;
- this.keySize = keySize;
- this.z = z; // TODO Clone?
- this.extraInfo = extraInfo;
- }
- public DerObjectIdentifier Algorithm
- {
- get { return algorithm; }
- }
- public int KeySize
- {
- get { return keySize; }
- }
- public byte[] GetZ()
- {
- // TODO Clone?
- return z;
- }
- public byte[] GetExtraInfo()
- {
- // TODO Clone?
- return extraInfo;
- }
- }
- }
- #pragma warning restore
- #endif
|