Searched refs:authkey (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/keys/
H A Drequest_key_auth.c142 struct key *authkey = NULL; local
187 authkey = key_alloc(&key_type_request_key_auth, desc,
191 if (IS_ERR(authkey)) {
192 ret = PTR_ERR(authkey);
197 ret = key_instantiate_and_link(authkey, rka, 0, NULL, NULL);
201 kleave(" = {%d}", authkey->serial);
202 return authkey;
211 key_revoke(authkey);
212 key_put(authkey);
245 struct key *authkey; local
[all...]
H A Drequest_key.c35 struct key *authkey,
47 kenter("{%d},{%d},%s", key->serial, authkey->serial, op);
60 ret = __key_link(keyring, authkey);
137 struct key *key, *authkey; local
158 authkey = request_key_auth_new(key, callout_info);
159 if (IS_ERR(authkey)) {
160 ret = PTR_ERR(authkey);
161 authkey = NULL;
169 ret = actor(key, authkey, "create", aux);
178 key_revoke(authkey);
34 call_sbin_request_key(struct key *key, struct key *authkey, const char *op, void *aux) argument
[all...]
H A Dkeyctl.c1022 struct key *authkey; local
1043 authkey = key_get_instantiation_authkey(id);
1044 if (IS_ERR(authkey)) {
1045 ret = PTR_ERR(authkey);
1050 current->request_key_auth = authkey;
1051 ret = authkey->serial;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dkey.h182 typedef int (*request_key_actor_t)(struct key *key, struct key *authkey,
234 * - authkey is the authority to assume when instantiating this key

Completed in 58 milliseconds