blob: 61487a5b25d9dff939657a37ddc5049da8f183c7 (
plain) (
blame)
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
|
using System;
using Org.BouncyCastle.Crypto;
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
/// <remarks>General class to contain a private key for use with other OpenPGP objects.</remarks>
public class PgpPrivateKey
{
private readonly long keyID;
private readonly PublicKeyPacket publicKeyPacket;
private readonly AsymmetricKeyParameter privateKey;
/// <summary>
/// Create a PgpPrivateKey from a keyID, the associated public data packet, and a regular private key.
/// </summary>
/// <param name="keyID">ID of the corresponding public key.</param>
/// <param name="publicKeyPacket">the public key data packet to be associated with this private key.</param>
/// <param name="privateKey">the private key data packet to be associated with this private key.</param>
public PgpPrivateKey(
long keyID,
PublicKeyPacket publicKeyPacket,
AsymmetricKeyParameter privateKey)
{
if (!privateKey.IsPrivate)
throw new ArgumentException("Expected a private key", "privateKey");
this.keyID = keyID;
this.publicKeyPacket = publicKeyPacket;
this.privateKey = privateKey;
}
/// <summary>The keyId associated with the contained private key.</summary>
public long KeyId
{
get { return keyID; }
}
/// <summary>The public key packet associated with this private key, if available.</summary>
public PublicKeyPacket PublicKeyPacket
{
get { return publicKeyPacket; }
}
/// <summary>The contained private key.</summary>
public AsymmetricKeyParameter Key
{
get { return privateKey; }
}
}
}
|