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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
* gnome-keyring
*
* Copyright (C) 2011 Collabora Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Stef Walter <stefw@collabora.co.uk>
*/
#if !defined (__GCR_INSIDE_HEADER__) && !defined (GCR_COMPILATION)
#error "Only <gcr/gcr.h> or <gcr/gcr-base.h> can be included directly."
#endif
#ifndef GCR_CERTIFICATE_EXTENSIONS_H
#define GCR_CERTIFICATE_EXTENSIONS_H
#include <glib.h>
G_BEGIN_DECLS
GBytes * _gcr_certificate_extension_find (GNode *cert,
GQuark oid,
gboolean *critical);
gboolean _gcr_certificate_extension_basic_constraints (GBytes *data,
gboolean *is_ca,
gint *path_len);
GQuark * _gcr_certificate_extension_extended_key_usage (GBytes *data);
gpointer _gcr_certificate_extension_subject_key_identifier (GBytes *data,
gsize *n_keyid);
typedef enum {
GCR_KEY_USAGE_DIGITAL_SIGNATURE = 1 << 0,
GCR_KEY_USAGE_NON_REPUDIATION = 1 << 1,
GCR_KEY_USAGE_KEY_ENCIPHERMENT = 1 << 2,
GCR_KEY_USAGE_DATA_ENCIPHERMENT = 1 << 3,
GCR_KEY_USAGE_KEY_AGREEMENT = 1 << 4,
GCR_KEY_USAGE_KEY_CERT_SIGN = 1 << 5,
GCR_KEY_USAGE_CRL_SIGN = 1 << 6,
} GcrCertificateExtensionKeyUsage;
gboolean _gcr_certificate_extension_key_usage (GBytes *data,
gulong *key_usage);
typedef enum {
GCR_GENERAL_NAME_OTHER,
GCR_GENERAL_NAME_RFC822,
GCR_GENERAL_NAME_DNS,
GCR_GENERAL_NAME_X400,
GCR_GENERAL_NAME_DN,
GCR_GENERAL_NAME_EDI,
GCR_GENERAL_NAME_URI,
GCR_GENERAL_NAME_IP,
GCR_GENERAL_NAME_REGISTERED_ID,
} GcrGeneralNameType;
typedef struct {
GcrGeneralNameType type;
const gchar *description;
gchar *display;
GBytes *raw;
} GcrGeneralName;
GArray * _gcr_certificate_extension_subject_alt_name (GBytes *data);
void _gcr_general_names_free (GArray *names);
G_END_DECLS
#endif /* GCR_CERTIFICATE_H */
|