blob: 400bf6f9e71265c9ce81059b83a7c687ec0a993f (
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
|
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Tsp;
namespace Org.BouncyCastle.Tsp
{
public class GenTimeAccuracy
{
private Accuracy accuracy;
public GenTimeAccuracy(
Accuracy accuracy)
{
this.accuracy = accuracy;
}
public int Seconds { get { return GetTimeComponent(accuracy.Seconds); } }
public int Millis { get { return GetTimeComponent(accuracy.Millis); } }
public int Micros { get { return GetTimeComponent(accuracy.Micros); } }
private int GetTimeComponent(
DerInteger time)
{
return time == null ? 0 : time.IntValueExact;
}
public override string ToString()
{
return Seconds + "." + Millis.ToString("000") + Micros.ToString("000");
}
}
}
|