comparison rsa.h @ 584:0442c18da5c9

Comment public/private parts
author Matt Johnston <matt@ucc.asn.au>
date Tue, 20 Jul 2010 13:54:20 +0000
parents fe6bca95afa7
children b50f0107e505
comparison
equal deleted inserted replaced
583:0d43d4ea4819 584:0442c18da5c9
34 34
35 struct RSA_key { 35 struct RSA_key {
36 36
37 mp_int* n; 37 mp_int* n;
38 mp_int* e; 38 mp_int* e;
39 /* d, p, and q are private parts */
39 mp_int* d; 40 mp_int* d;
40 mp_int* p; 41 mp_int* p;
41 mp_int* q; 42 mp_int* q;
42 43
43 }; 44 };