blob: 62184b2a108c18382d9ce501d2e1864a109fc4d1 (
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
|
using Org.BouncyCastle.Crypto.Utilities;
namespace Org.BouncyCastle.Bcpg.Sig
{
/**
* packet giving time after creation at which the key expires.
*/
public class KeyExpirationTime
: SignatureSubpacket
{
protected static byte[] TimeToBytes(long t)
{
return Pack.UInt32_To_BE((uint)t);
}
public KeyExpirationTime(
bool critical,
bool isLongLength,
byte[] data)
: base(SignatureSubpacketTag.KeyExpireTime, critical, isLongLength, data)
{
}
public KeyExpirationTime(
bool critical,
long seconds)
: base(SignatureSubpacketTag.KeyExpireTime, critical, false, TimeToBytes(seconds))
{
}
/**
* Return the number of seconds after creation time a key is valid for.
*
* @return second count for key validity.
*/
public long Time => (long)Pack.BE_To_UInt32(data);
}
}
|