Shamir's trick implementation.
[crypto_lab3.git] / src / RsaCrt.h
index adf6c72..6e93e6b 100644 (file)
@@ -35,6 +35,9 @@ public:
     * @param m the message to sign. No padding is used.
     */
    static mpz_class signWithFaultySp(const mpz_class& m, const KeyPriv& kPriv);
+
+private:
+   static mpz_class sign(const mpz_class& m, const KeyPriv& kPriv, bool withError);
 };
 
 #endif