Home
last modified time | relevance | path

Searched refs:match_id (Results 1 – 2 of 2) sorted by relevance

/crypto/asymmetric_keys/
Dasymmetric_type.c195 const struct asymmetric_key_id *match_id, in asymmetric_match_key_ids() argument
201 if (!kids || !match_id) in asymmetric_match_key_ids()
204 if (match(kids->id[i], match_id)) in asymmetric_match_key_ids()
211 struct asymmetric_key_id *match_id, in __asymmetric_key_hex_to_key_id() argument
214 match_id->len = hexlen; in __asymmetric_key_hex_to_key_id()
215 return hex2bin(match_id->data, id, hexlen); in __asymmetric_key_hex_to_key_id()
224 struct asymmetric_key_id *match_id; in asymmetric_key_hex_to_key_id() local
234 match_id = kmalloc(sizeof(struct asymmetric_key_id) + asciihexlen / 2, in asymmetric_key_hex_to_key_id()
236 if (!match_id) in asymmetric_key_hex_to_key_id()
238 ret = __asymmetric_key_hex_to_key_id(id, match_id, asciihexlen / 2); in asymmetric_key_hex_to_key_id()
[all …]
Dasymmetric_keys.h13 struct asymmetric_key_id *match_id,