From a8c28714cddd45cdaadcce2fef5cb0325500b33f Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Tue, 20 Jul 2010 13:54:20 +0000
Subject: [PATCH] Comment public/private parts

--HG--
extra : convert_revision : 914cbb822f488fa5d17affdad01fcc7dae6006b1
---
 dss.h | 1 +
 rsa.h | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dss.h b/dss.h
index 0b692564..99a34efa 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 545ba9bf..4b9f3909 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;
-- 
GitLab