Comment public/private parts

--HG--
extra : convert_revision : 914cbb822f488fa5d17affdad01fcc7dae6006b1
This commit is contained in:
Matt Johnston 2010-07-20 13:54:20 +00:00
parent eabfd803c9
commit a8c28714cd
2 changed files with 2 additions and 0 deletions

1
dss.h
View File

@ -38,6 +38,7 @@ struct DSS_key {
mp_int* q;
mp_int* g;
mp_int* y;
/* x is the private part */
mp_int* x;
};

1
rsa.h
View File

@ -36,6 +36,7 @@ struct RSA_key {
mp_int* n;
mp_int* e;
/* d, p, and q are private parts */
mp_int* d;
mp_int* p;
mp_int* q;