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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
using System;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Bcpg
{
/// <remarks>Base class for an RSA secret (or priate) key.</remarks>
public class RsaSecretBcpgKey
: BcpgObject, IBcpgKey
{
private readonly MPInteger d, p, q, u;
private readonly BigInteger expP, expQ, crt;
public RsaSecretBcpgKey(
BcpgInputStream bcpgIn)
{
this.d = new MPInteger(bcpgIn);
this.p = new MPInteger(bcpgIn);
this.q = new MPInteger(bcpgIn);
this.u = new MPInteger(bcpgIn);
this.expP = d.Value.Remainder(p.Value.Subtract(BigInteger.One));
this.expQ = d.Value.Remainder(q.Value.Subtract(BigInteger.One));
this.crt = BigIntegers.ModOddInverse(p.Value, q.Value);
}
public RsaSecretBcpgKey(
BigInteger d,
BigInteger p,
BigInteger q)
{
// PGP requires (p < q)
int cmp = p.CompareTo(q);
if (cmp >= 0)
{
if (cmp == 0)
throw new ArgumentException("p and q cannot be equal");
BigInteger tmp = p;
p = q;
q = tmp;
}
this.d = new MPInteger(d);
this.p = new MPInteger(p);
this.q = new MPInteger(q);
this.u = new MPInteger(BigIntegers.ModOddInverse(q, p));
this.expP = d.Remainder(p.Subtract(BigInteger.One));
this.expQ = d.Remainder(q.Subtract(BigInteger.One));
this.crt = BigIntegers.ModOddInverse(p, q);
}
public BigInteger Modulus
{
get { return p.Value.Multiply(q.Value); }
}
public BigInteger PrivateExponent
{
get { return d.Value; }
}
public BigInteger PrimeP
{
get { return p.Value; }
}
public BigInteger PrimeQ
{
get { return q.Value; }
}
public BigInteger PrimeExponentP
{
get { return expP; }
}
public BigInteger PrimeExponentQ
{
get { return expQ; }
}
public BigInteger CrtCoefficient
{
get { return crt; }
}
/// <summary>The format, as a string, always "PGP".</summary>
public string Format
{
get { return "PGP"; }
}
/// <summary>Return the standard PGP encoding of the key.</summary>
public override byte[] GetEncoded()
{
try
{
return base.GetEncoded();
}
catch (Exception)
{
return null;
}
}
public override void Encode(
BcpgOutputStream bcpgOut)
{
bcpgOut.WriteObjects(d, p, q, u);
}
}
}
|