#ifndef _DSA_H_8b9e885f_ #define _DSA_H_8b9e885f_ #include void *dsa_init(const MP_INT *, const MP_INT *, const MP_INT *, const MP_INT *); void dsa_gen_priv(const void *, void (*)(void *, int), void *); int dsa_priv_to_pub(const void *, const void *, MP_INT *); int dsa_set_pub(void *, const MP_INT *); int dsa_sign(const void *, const void *, const void *, void (*)(void *, int), MP_INT *, MP_INT *); int dsa_verify(const void *, const void *, const MP_INT *, const MP_INT *); void dsa_done(void *); #endif