Skip to content

Commit 3ab1d60

Browse files
committedJun 7, 2014
Merge pull request #32 from bouuntyy/master
Fix the computing of dp and dq
2 parents 09e09e2 + fc923ba commit 3ab1d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎heartleech.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,11 @@ rsa_gen(const BIGNUM *p, const BIGNUM *q, const BIGNUM *e)
790790

791791
/* calculate d mod (p-1) */
792792
rsa->dmp1 = BN_new();
793-
BN_mod(rsa->dmp1, rsa->d, rsa->p, ctx);
793+
BN_mod(rsa->dmp1, rsa->d, p1, ctx);
794794

795795
/* calculate d mod (q-1) */
796796
rsa->dmq1 = BN_new();
797-
BN_mod(rsa->dmq1, rsa->d, rsa->q, ctx);
797+
BN_mod(rsa->dmq1, rsa->d, q1, ctx);
798798

799799
/* calculate inverse of q mod p */
800800
rsa->iqmp = BN_new();

0 commit comments

Comments
 (0)
Please sign in to comment.