From: Niels Möller Date: Fri, 7 Sep 2018 07:09:37 +0000 (+0200) Subject: Fix mis-spelling spotted by Torbjörn Granlund. X-Git-Tag: nettle_3.5rc1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1aedf851add8d2bcf0f06561badebc3e8b194e69;p=thirdparty%2Fnettle.git Fix mis-spelling spotted by Torbjörn Granlund. --- diff --git a/rsa-keygen.c b/rsa-keygen.c index bf04cb82..b7e38f77 100644 --- a/rsa-keygen.c +++ b/rsa-keygen.c @@ -104,7 +104,7 @@ rsa_generate_keypair(struct rsa_public_key *pub, mpz_sub_ui(p1, key->p, 1); - /* If e was given, we must chose p such that p-1 has no factors in + /* If e was given, we must choose p such that p-1 has no factors in * common with e. */ if (e_size) break; @@ -132,7 +132,7 @@ rsa_generate_keypair(struct rsa_public_key *pub, mpz_sub_ui(q1, key->q, 1); - /* If e was given, we must chose q such that q-1 has no factors in + /* If e was given, we must choose q such that q-1 has no factors in * common with e. */ if (e_size) break;