2 * Copyright (C) 2005-2012 Free Software Foundation, Inc.
4 * Author: Simon Josefsson
6 * This file is part of GnuTLS.
8 * GnuTLS is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * GnuTLS is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with GnuTLS; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
34 gnutls_certificate_credentials_t x509cred
;
35 const char *file
, *password
;
38 ret
= gnutls_global_init ();
40 fail ("gnutls_global_init failed %d\n", ret
);
42 ret
= gnutls_certificate_allocate_credentials (&x509cred
);
44 fail ("gnutls_certificate_allocate_credentials failed %d\n", ret
);
46 file
= getenv ("PKCS12FILE");
47 password
= getenv ("PKCS12PASSWORD");
50 file
= "pkcs12-decode/client.p12";
55 success ("Reading PKCS#12 blob from `%s' using password `%s'.\n",
57 ret
= gnutls_certificate_set_x509_simple_pkcs12_file (x509cred
,
62 fail ("x509_pkcs12 failed %d: %s\n", ret
, gnutls_strerror (ret
));
65 success ("Read file OK\n");
67 gnutls_certificate_free_credentials (x509cred
);
69 /* try now if we can read correctly from a pkcs12 file that
70 * contains two certificates (one unrelated with key)
72 ret
= gnutls_certificate_allocate_credentials (&x509cred
);
74 fail ("gnutls_certificate_allocate_credentials failed %d\n", ret
);
76 file
= getenv ("PKCS12FILE_2");
77 password
= getenv ("PKCS12PASSWORD_2");
80 file
= "pkcs12-decode/pkcs12_2certs.p12";
85 success ("Reading PKCS#12 blob from `%s' using password `%s'.\n",
87 ret
= gnutls_certificate_set_x509_simple_pkcs12_file (x509cred
,
92 fail ("x509_pkcs12 failed %d: %s\n", ret
, gnutls_strerror (ret
));
95 success ("Read file OK\n");
97 gnutls_certificate_free_credentials (x509cred
);
99 gnutls_global_deinit ();