diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
commit | 6bfbcdbfdb00f22727cfb749b1c60a80210ecfc7 (patch) | |
tree | 3e6f647d212466933d744e47dcdbcf97ff00ecfc /ecdsa.c | |
parent | fdc61f3ab2c07f3f8d0546ee83b1a6776cc1786e (diff) | |
parent | 645b2541732cebbccd499c4e8bf18f86d77bff0f (diff) |
Merge branch 'fperrad-20151231_indent'
Diffstat (limited to 'ecdsa.c')
-rw-r--r-- | ecdsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -385,12 +385,12 @@ int buf_ecdsa_verify(buffer *buf, ecc_key *key, buffer *data_buf) { goto out; } - /* reduce */ + /* reduce */ if (ltc_mp.ecc_map(mG, m, mp) != CRYPT_OK) { goto out; } } else { - /* use Shamir's trick to compute u1*mG + u2*mQ using half of the doubles */ + /* use Shamir's trick to compute u1*mG + u2*mQ using half of the doubles */ if (ltc_mp.ecc_mul2add(mG, u1, mQ, u2, mG, m) != CRYPT_OK) { goto out; } |