Lines Matching defs:lst
84 static int find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst);
3582 static int find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst)
3584 for (; lst != NULL; lst = lst->next) {
3585 if (strcmp(lst->name, name) == 0) {
3587 *ppk = lst->key;
3594 static void free_key_list(KEY_LIST *lst)
3596 while (lst != NULL) {
3597 KEY_LIST *next = lst->next;
3599 EVP_PKEY_free(lst->key);
3600 OPENSSL_free(lst->name);
3601 OPENSSL_free(lst);
3602 lst = next;