Lines Matching defs:lst
84 static int find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst);
3621 static int find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst)
3623 for (; lst != NULL; lst = lst->next) {
3624 if (strcmp(lst->name, name) == 0) {
3626 *ppk = lst->key;
3633 static void free_key_list(KEY_LIST *lst)
3635 while (lst != NULL) {
3636 KEY_LIST *next = lst->next;
3638 EVP_PKEY_free(lst->key);
3639 OPENSSL_free(lst->name);
3640 OPENSSL_free(lst);
3641 lst = next;