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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (C) 2006, 2007 Free Software Foundation, Inc.
*
* Author: Simon Josefsson
*
* This file is part of GNUTLS.
*
* GNUTLS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* GNUTLS 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNUTLS; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
static char crl[] =
"-----BEGIN X509 CRL-----\n"
"MIIB9DCCAV8CAQEwCwYJKoZIhvcNAQEFMIIBCDEXMBUGA1UEChMOVmVyaVNpZ24s\n"
"IEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxRjBEBgNVBAsT\n"
"PXd3dy52ZXJpc2lnbi5jb20vcmVwb3NpdG9yeS9SUEEgSW5jb3JwLiBieSBSZWYu\n"
"LExJQUIuTFREKGMpOTgxHjAcBgNVBAsTFVBlcnNvbmEgTm90IFZhbGlkYXRlZDEm\n"
"MCQGA1UECxMdRGlnaXRhbCBJRCBDbGFzcyAxIC0gTmV0c2NhcGUxGDAWBgNVBAMU\n"
"D1NpbW9uIEpvc2Vmc3NvbjEiMCAGCSqGSIb3DQEJARYTc2ltb25Aam9zZWZzc29u\n"
"Lm9yZxcNMDYxMjI3MDgwMjM0WhcNMDcwMjA3MDgwMjM1WjAjMCECEC4QNwPfRoWd\n"
"elUNpllhhTgXDTA2MTIyNzA4MDIzNFowCwYJKoZIhvcNAQEFA4GBAD0zX+J2hkcc\n"
"Nbrq1Dn5IKL8nXLgPGcHv1I/le1MNo9t1ohGQxB5HnFUkRPAY82fR6Epor4aHgVy\n"
"b+5y+neKN9Kn2mPF4iiun+a4o26CjJ0pArojCL1p8T0yyi9Xxvyc/ezaZ98HiIyP\n"
"c3DGMNR+oUmSjKZ0jIhAYmeLxaPHfQwR\n"
"-----END X509 CRL-----\n";
/* Test regression of bug reported by Max Kellermann <max@duempel.org>
in Message-ID: <20061211075202.GA1517@roonstrasse.net> to the
gnutls-dev@gnupg.org list. */
int
main (void)
{
int rc;
gnutls_certificate_credentials_t crt;
gnutls_datum_t crldatum = { crl, strlen (crl) };
gnutls_x509_crl_t crl;
rc = gnutls_global_init ();
if (rc)
{
printf ("gnutls_global_init rc %d: %s\n", rc, gnutls_strerror (rc));
return 1;
}
rc = gnutls_certificate_allocate_credentials (&crt);
if (rc)
{
printf ("gnutls_certificate_allocate_credentials rc %d: %s\n",
rc, gnutls_strerror (rc));
return 1;
}
rc = gnutls_certificate_set_x509_crl_mem (crt, &crldatum,
GNUTLS_X509_FMT_PEM);
if (rc != 1)
{
printf ("gnutls_certificate_set_x509_crl_mem num %d\n", rc);
return 1;
}
rc = gnutls_x509_crl_init (&crl);
if (rc)
{
printf ("gnutls_x509_crl_init rc %d: %s\n", rc, gnutls_strerror (rc));
return 1;
}
rc = gnutls_x509_crl_import (crl, &crldatum, GNUTLS_X509_FMT_PEM);
if (rc)
{
printf ("gnutls_x509_crl_import rc %d: %s\n", rc, gnutls_strerror (rc));
return 1;
}
rc = gnutls_certificate_set_x509_crl (crt, &crl, 1);
if (rc)
{
printf ("gnutls_certificate_set_x509_crl rc %d: %s\n",
rc, gnutls_strerror (rc));
return 1;
}
gnutls_x509_crl_deinit (crl);
gnutls_certificate_free_credentials (crt);
gnutls_global_deinit ();
return 0;
}
|