Lines Matching refs:f_key
1007 *\li f_key Key structure to be freed.
1011 dst_free_key(DST_KEY *f_key)
1014 if (f_key == NULL)
1015 return (f_key);
1016 if (f_key->dk_func && f_key->dk_func->destroy)
1017 f_key->dk_KEY_struct =
1018 f_key->dk_func->destroy(f_key->dk_KEY_struct);
1020 EREPORT(("%s: Unknown key alg %d\n", __func__, f_key->dk_alg));
1022 if (f_key->dk_KEY_struct) {
1023 free(f_key->dk_KEY_struct);
1024 f_key->dk_KEY_struct = NULL;
1026 if (f_key->dk_key_name)
1027 SAFE_FREE(f_key->dk_key_name);
1028 SAFE_FREE(f_key);