blob: ed8bb6bd8f6767613f788ba18c0c412772093e67 (
plain)
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
|
/*
* pkcs11x.h
* Copyright 2010 Collabora, Ltd
*
* This file is free software; as a special exception the author gives
* unlimited permission to copy and/or distribute it, with or without
* modifications, as long as this notice is preserved.
*
* This file is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE.
*/
/*
* The latest version of this file is at:
*
* git://thewalter.net/git/pkcs11-trust-assertions
*
* or viewable on the web at:
*
* http://thewalter.net/git/cgit.cgi/pkcs11-trust-assertions/tree/pkcs11-trust-assertions.h
*
*/
#ifndef PKCS11_TRUST_ASSERTIONS_H
#define PKCS11_TRUST_ASSERTIONS_H
#include <p11-kit/pkcs11.h>
#define CKA_XDG (CKA_VENDOR_DEFINED | 0x58444700UL /* XDG0 */ )
#define CKO_XDG (CKA_VENDOR_DEFINED | 0x58444700UL /* XDG0 */ )
/* -------------------------------------------------------------------
* TRUST ASSERTIONS
*/
#define CKO_X_TRUST_ASSERTION (CKO_XDG + 100)
#define CKA_X_ASSERTION_TYPE (CKA_XDG + 1)
#define CKA_X_CERTIFICATE_VALUE (CKA_XDG + 2)
#define CKA_X_PURPOSE (CKA_XDG + 3)
#define CKA_X_PEER (CKA_XDG + 4)
typedef CK_ULONG CK_X_ASSERTION_TYPE;
#define CKT_X_UNTRUSTED_CERTIFICATE 1UL
#define CKT_X_PINNED_CERTIFICATE 2UL
#define CKT_X_ANCHORED_CERTIFICATE 3UL
#endif /* PKCS11_TRUST_ASSERTIONS_H */
|