/* crypto.c
 *
 * contains the cryptographic function needed for dnssec
 * the crypto library used it openssl
 *
 * (c) NLnet Labs, 2004
 * 
 * See the file LICENSE for the license
 */

int verify_rrsig(struct t_rr *rrset, struct t_rr *rrsig, struct t_rr *dnskey);
struct t_rr *keyset_create(struct t_rdata *name);
struct t_rr *keyset_add_key(struct t_rr *, struct t_rr *); 
void keyset_destroy(struct t_rr *);
struct t_rr * keyset_contains_key(struct t_rr *, struct t_rr *);


syntax highlighted by Code2HTML, v. 0.9.1