Searched refs:m_d (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Drsa.cpp123 m_d = m_e.InverseMod(LCM(m_p-1, m_q-1));
124 assert(m_d.IsPositive());
126 m_dp = m_d % (m_p-1);
127 m_dq = m_d % (m_q-1);
155 m_d = d;
180 m_dp = m_d % (m_p-1);
181 m_dq = m_d % (m_q-1);
199 m_d.BERDecode(privateKey);
214 m_d.DEREncode(privateKey);
248 pass = pass && m_d > Intege
[all...]
H A Drsa.h60 {m_n = n; m_e = e; m_d = d; m_p = p; m_q = q; m_dp = dp; m_dq = dq; m_u = u;}
90 const Integer& GetPrivateExponent() const {return m_d;}
97 void SetPrivateExponent(const Integer &d) {m_d = d;}
103 Integer m_d, m_p, m_q, m_dp, m_dq, m_u; member in class:InvertibleRSAFunction

Completed in 64 milliseconds