rsa_key
iph1->rsa = ((struct rsa_key *)
struct rsa_key *new;
new = rsa_key_dup((struct rsa_key *)entry);
struct rsa_key *rsa_key;
rsa_key = (struct rsa_key *)data;
if (rsa_key->src)
free(rsa_key->src);
if (rsa_key->dst)
free(rsa_key->dst);
if (rsa_key->rsa)
RSA_free(rsa_key->rsa);
free(rsa_key);
struct rsa_key *key = entry;
struct rsa_key *key = entry;
struct rsa_key *key;
struct rsa_key *rsa_key;
rsa_key = calloc(sizeof(struct rsa_key), 1);
rsa_key->rsa = rsa;
rsa_key->src = src;
rsa_key->src = calloc(sizeof(*rsa_key->src), 1);
rsa_key->dst = dst;
rsa_key->dst = calloc(sizeof(*rsa_key->dst), 1);
genlist_append(list, rsa_key);
struct rsa_key *
rsa_key_dup(struct rsa_key *key)
struct rsa_key *new;
new = calloc(sizeof(struct rsa_key), 1);
struct rsa_key *rsa_key_dup(struct rsa_key *key);