blob: 3ec50ae377ec79d4c64329ccd977e4904bc687f3 (
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
|
namespace Org.BouncyCastle.Asn1.X509.SigI
{
/**
* Object Identifiers of SigI specifciation (German Signature Law
* Interoperability specification).
*/
// TODO[api] Make static
public sealed class SigIObjectIdentifiers
{
private SigIObjectIdentifiers()
{
}
public readonly static DerObjectIdentifier IdSigI = new DerObjectIdentifier("1.3.36.8");
/**
* Key purpose IDs for German SigI (Signature Interoperability
* Specification)
*/
public readonly static DerObjectIdentifier IdSigIKP = IdSigI.Branch("2");
/**
* Certificate policy IDs for German SigI (Signature Interoperability
* Specification)
*/
public readonly static DerObjectIdentifier IdSigICP = IdSigI.Branch("1");
/**
* Other Name IDs for German SigI (Signature Interoperability Specification)
*/
public readonly static DerObjectIdentifier IdSigION = IdSigI.Branch("4");
/**
* To be used for for the generation of directory service certificates.
*/
public static readonly DerObjectIdentifier IdSigIKPDirectoryService = IdSigIKP.Branch("1");
/**
* ID for PersonalData
*/
public static readonly DerObjectIdentifier IdSigIONPersonalData = IdSigION.Branch("1");
/**
* Certificate is conform to german signature law.
*/
public static readonly DerObjectIdentifier IdSigICPSigConform = IdSigICP.Branch("1");
}
}
|