updated makefiles
[gnutls.git] / lib / pkcs11_secret.c
blob54205f741e2db907bae23acbb59659cc48d5c1c3
1 /*
2 * GnuTLS PKCS#11 support
3 * Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 *
5 * Author: Nikos Mavrogiannopoulos, Stef Walter
7 * The GnuTLS is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public License
9 * as published by the Free Software Foundation; either version 3 of
10 * the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>
21 #include <gnutls_int.h>
22 #include <gnutls/pkcs11.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <gnutls_errors.h>
26 #include <gnutls_datum.h>
27 #include <pkcs11_int.h>
28 #include <random.h>
30 /**
31 * gnutls_pkcs11_copy_secret_key:
32 * @token_url: A PKCS #11 URL specifying a token
33 * @key: The raw key
34 * @label: A name to be used for the stored data
35 * @key_usage: One of GNUTLS_KEY_*
36 * @flags: One of GNUTLS_PKCS11_OBJ_FLAG_*
38 * This function will copy a raw secret (symmetric) key into a PKCS #11
39 * token specified by a URL. The key can be marked as sensitive or not.
41 * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise a
42 * negative error value.
44 * Since: 2.12.0
45 **/
46 int
47 gnutls_pkcs11_copy_secret_key (const char *token_url, gnutls_datum_t * key,
48 const char *label,
49 unsigned int key_usage, unsigned int flags
50 /* GNUTLS_PKCS11_OBJ_FLAG_* */ )
52 int ret;
53 struct ck_function_list *module;
54 ck_session_handle_t pks;
55 struct p11_kit_uri *info = NULL;
56 ck_rv_t rv;
57 struct ck_attribute a[12];
58 ck_object_class_t class = CKO_SECRET_KEY;
59 ck_object_handle_t obj;
60 ck_key_type_t keytype = CKK_GENERIC_SECRET;
61 ck_bool_t tval = 1;
62 int a_val;
63 uint8_t id[16];
65 ret = pkcs11_url_to_info (token_url, &info);
66 if (ret < 0)
68 gnutls_assert ();
69 return ret;
72 /* generate a unique ID */
73 ret = _gnutls_rnd (GNUTLS_RND_NONCE, id, sizeof (id));
74 if (ret < 0)
76 gnutls_assert ();
77 return ret;
80 ret =
81 pkcs11_open_session (&module, &pks, info,
82 SESSION_WRITE | pkcs11_obj_flags_to_int (flags));
83 p11_kit_uri_free (info);
85 if (ret < 0)
87 gnutls_assert ();
88 return ret;
91 /* FIXME: copy key usage flags */
93 a[0].type = CKA_CLASS;
94 a[0].value = &class;
95 a[0].value_len = sizeof (class);
96 a[1].type = CKA_VALUE;
97 a[1].value = key->data;
98 a[1].value_len = key->size;
99 a[2].type = CKA_TOKEN;
100 a[2].value = &tval;
101 a[2].value_len = sizeof (tval);
102 a[3].type = CKA_PRIVATE;
103 a[3].value = &tval;
104 a[3].value_len = sizeof (tval);
105 a[4].type = CKA_KEY_TYPE;
106 a[4].value = &keytype;
107 a[4].value_len = sizeof (keytype);
108 a[5].type = CKA_ID;
109 a[5].value = id;
110 a[5].value_len = sizeof (id);
112 a_val = 6;
114 if (label)
116 a[a_val].type = CKA_LABEL;
117 a[a_val].value = (void *) label;
118 a[a_val].value_len = strlen (label);
119 a_val++;
122 if (flags & GNUTLS_PKCS11_OBJ_FLAG_MARK_SENSITIVE)
123 tval = 1;
124 else
125 tval = 0;
127 a[a_val].type = CKA_SENSITIVE;
128 a[a_val].value = &tval;
129 a[a_val].value_len = sizeof (tval);
130 a_val++;
132 rv = pkcs11_create_object (module, pks, a, a_val, &obj);
133 if (rv != CKR_OK)
135 gnutls_assert ();
136 _gnutls_debug_log ("pkcs11: %s\n", pkcs11_strerror (rv));
137 ret = pkcs11_rv_to_err (rv);
138 goto cleanup;
141 /* generated!
144 ret = 0;
146 cleanup:
147 pkcs11_close_session (module, pks);
149 return ret;