Skip to content
Snippets Groups Projects
Commit 1aedf851 authored by Niels Möller's avatar Niels Möller
Browse files

Fix mis-spelling spotted by Torbjörn Granlund.

parent 71f68cc4
Branches
Tags
No related merge requests found
...@@ -104,7 +104,7 @@ rsa_generate_keypair(struct rsa_public_key *pub, ...@@ -104,7 +104,7 @@ rsa_generate_keypair(struct rsa_public_key *pub,
mpz_sub_ui(p1, key->p, 1); 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. */ * common with e. */
if (e_size) if (e_size)
break; break;
...@@ -132,7 +132,7 @@ rsa_generate_keypair(struct rsa_public_key *pub, ...@@ -132,7 +132,7 @@ rsa_generate_keypair(struct rsa_public_key *pub,
mpz_sub_ui(q1, key->q, 1); 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. */ * common with e. */
if (e_size) if (e_size)
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment