diff --git a/dss.h b/dss.h index 0b6925646700bc3767751886509f6e9c90a28777..99a34efa4de288abc15779bc6d6e67c4c4d7298a 100644 --- a/dss.h +++ b/dss.h @@ -38,6 +38,7 @@ struct DSS_key { mp_int* q; mp_int* g; mp_int* y; + /* x is the private part */ mp_int* x; }; diff --git a/rsa.h b/rsa.h index 545ba9bf99584e6433d5967e99598295c05d7a2d..4b9f39093df5b25468b941e028e0736d8ef7048f 100644 --- a/rsa.h +++ b/rsa.h @@ -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;