diff options
-rw-r--r-- | dss.h | 1 | ||||
-rw-r--r-- | rsa.h | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -38,6 +38,7 @@ struct DSS_key { mp_int* q; mp_int* g; mp_int* y; + /* x is the private part */ mp_int* x; }; @@ -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; |