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.
106 lines
3.6 KiB
106 lines
3.6 KiB
11 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement.JPake
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The payload sent/received during the first round of a J-PAKE exchange.
|
||
|
///
|
||
|
/// Each JPAKEParticipant creates and sends an instance of this payload to
|
||
|
/// the other. The payload to send should be created via
|
||
|
/// JPAKEParticipant.CreateRound1PayloadToSend().
|
||
|
///
|
||
|
/// Each participant must also validate the payload received from the other.
|
||
|
/// The received payload should be validated via
|
||
|
/// JPAKEParticipant.ValidateRound1PayloadReceived(JPakeRound1Payload).
|
||
|
/// </summary>
|
||
|
public class JPakeRound1Payload
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The id of the JPAKEParticipant who created/sent this payload.
|
||
|
/// </summary>
|
||
|
private readonly string participantId;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The value of g^x1
|
||
|
/// </summary>
|
||
|
private readonly BigInteger gx1;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The value of g^x2
|
||
|
/// </summary>
|
||
|
private readonly BigInteger gx2;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The zero knowledge proof for x1.
|
||
|
///
|
||
|
/// This is a two element array, containing {g^v, r} for x1.
|
||
|
/// </summary>
|
||
|
private readonly BigInteger[] knowledgeProofForX1;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The zero knowledge proof for x2.
|
||
|
///
|
||
|
/// This is a two element array, containing {g^v, r} for x2.
|
||
|
/// </summary>
|
||
|
private readonly BigInteger[] knowledgeProofForX2;
|
||
|
|
||
|
public JPakeRound1Payload(string participantId, BigInteger gx1, BigInteger gx2, BigInteger[] knowledgeProofForX1, BigInteger[] knowledgeProofForX2)
|
||
|
{
|
||
|
JPakeUtilities.ValidateNotNull(participantId, "participantId");
|
||
|
JPakeUtilities.ValidateNotNull(gx1, "gx1");
|
||
|
JPakeUtilities.ValidateNotNull(gx2, "gx2");
|
||
|
JPakeUtilities.ValidateNotNull(knowledgeProofForX1, "knowledgeProofForX1");
|
||
|
JPakeUtilities.ValidateNotNull(knowledgeProofForX2, "knowledgeProofForX2");
|
||
|
|
||
|
this.participantId = participantId;
|
||
|
this.gx1 = gx1;
|
||
|
this.gx2 = gx2;
|
||
|
this.knowledgeProofForX1 = new BigInteger[knowledgeProofForX1.Length];
|
||
|
Array.Copy(knowledgeProofForX1, this.knowledgeProofForX1, knowledgeProofForX1.Length);
|
||
|
this.knowledgeProofForX2 = new BigInteger[knowledgeProofForX2.Length];
|
||
|
Array.Copy(knowledgeProofForX2, this.knowledgeProofForX2, knowledgeProofForX2.Length);
|
||
|
}
|
||
|
|
||
|
public virtual string ParticipantId
|
||
|
{
|
||
|
get { return participantId; }
|
||
|
}
|
||
|
|
||
|
public virtual BigInteger Gx1
|
||
|
{
|
||
|
get { return gx1; }
|
||
|
}
|
||
|
|
||
|
public virtual BigInteger Gx2
|
||
|
{
|
||
|
get { return gx2; }
|
||
|
}
|
||
|
|
||
|
public virtual BigInteger[] KnowledgeProofForX1
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
BigInteger[] kp = new BigInteger[knowledgeProofForX1.Length];
|
||
|
Array.Copy(knowledgeProofForX1, kp, knowledgeProofForX1.Length);
|
||
|
return kp;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public virtual BigInteger[] KnowledgeProofForX2
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
BigInteger[] kp = new BigInteger[knowledgeProofForX2.Length];
|
||
|
Array.Copy(knowledgeProofForX2, kp, knowledgeProofForX2.Length);
|
||
|
return kp;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|