29bc4b91d34a6e2b183700f429d3aa80d4a672ca
[crypto_lab3.git] / src / RsaCrt.h
1 #ifndef RSACRT_H
2 #define RSACRT_H
3
4 #include <gmpxx.h>
5
6 class RsaCrt
7 {
8 public:
9 RsaCrt();
10
11 struct KeyPrivCRT {
12 mpz_class p;
13 mpz_class q;
14 mpz_class dp;
15 mpz_class dq;
16 mpz_class qInv;
17 };
18 };
19
20 #endif