Lines Matching refs:f_key
998 *\li f_key Key structure to be freed.
1002 dst_free_key(DST_KEY *f_key)
1005 if (f_key == NULL)
1006 return (f_key);
1007 if (f_key->dk_func && f_key->dk_func->destroy)
1008 f_key->dk_KEY_struct =
1009 f_key->dk_func->destroy(f_key->dk_KEY_struct);
1012 f_key->dk_alg));
1014 if (f_key->dk_KEY_struct) {
1015 free(f_key->dk_KEY_struct);
1016 f_key->dk_KEY_struct = NULL;
1018 if (f_key->dk_key_name)
1019 SAFE_FREE(f_key->dk_key_name);
1020 SAFE_FREE(f_key);