X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccrypt%2Frsa_internal.h;h=c4feb3158d341d773f545269d1c4ff900f995597;hb=7428855aff83c6dd40431bb88d3f1e5c973e7c06;hp=33ffd88a6cf19bee3dfb5cf1324423d38acfde10;hpb=81b0d351d5bbfedf21db2addd2feb5bbeaa4fb9d;p=silc.git diff --git a/lib/silccrypt/rsa_internal.h b/lib/silccrypt/rsa_internal.h index 33ffd88a..c4feb315 100644 --- a/lib/silccrypt/rsa_internal.h +++ b/lib/silccrypt/rsa_internal.h @@ -24,8 +24,8 @@ /* RSA Keys, includes both Private and Public key */ typedef struct { int bits; /* bits in key */ - SilcMPInt p; /* prime p */ - SilcMPInt q; /* prime q */ + char pub_set; /* TRUE is n and e is set */ + char prv_set; /* TRUE if d is set */ SilcMPInt n; /* modulus */ SilcMPInt e; /* public exponent */ SilcMPInt d; /* private exponent */