1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
using System;
using System.IO;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Tls
{
public sealed class ServerSrpParams
{
private BigInteger m_N, m_g, m_B;
private byte[] m_s;
public ServerSrpParams(BigInteger N, BigInteger g, byte[] s, BigInteger B)
{
this.m_N = N;
this.m_g = g;
this.m_s = Arrays.Clone(s);
this.m_B = B;
}
public BigInteger B
{
get { return m_B; }
}
public BigInteger G
{
get { return m_g; }
}
public BigInteger N
{
get { return m_N; }
}
public byte[] S
{
get { return m_s; }
}
/// <summary>Encode this <see cref="ServerSrpParams"/> to a <see cref="Stream"/>.</summary>
/// <param name="output">the <see cref="Stream"/> to encode to.</param>
/// <exception cref="IOException"/>
public void Encode(Stream output)
{
TlsSrpUtilities.WriteSrpParameter(m_N, output);
TlsSrpUtilities.WriteSrpParameter(m_g, output);
TlsUtilities.WriteOpaque8(m_s, output);
TlsSrpUtilities.WriteSrpParameter(m_B, output);
}
/// <summary>Parse a <see cref="ServerSrpParams"/> from a <see cref="Stream"/>.</summary>
/// <param name="input">the <see cref="Stream"/> to parse from.</param>
/// <returns>a <see cref="ServerSrpParams"/> object.</returns>
/// <exception cref="IOException"/>
public static ServerSrpParams Parse(Stream input)
{
BigInteger N = TlsSrpUtilities.ReadSrpParameter(input);
BigInteger g = TlsSrpUtilities.ReadSrpParameter(input);
byte[] s = TlsUtilities.ReadOpaque8(input, 1);
BigInteger B = TlsSrpUtilities.ReadSrpParameter(input);
return new ServerSrpParams(N, g, s, B);
}
}
}
|