diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-06-06 14:54:14 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-06-09 11:03:33 +0200 |
commit | b6f19a6ab4dbe139c6ed8b863db69df7c40a391c (patch) | |
tree | c3918e10a1c6e3cc9ece4a50a3fccf8af171901a | |
parent | 1bb4d7dd79940edd1a83a9c1517c947b12ee7400 (diff) | |
download | strongswan-b6f19a6ab4dbe139c6ed8b863db69df7c40a391c.tar.bz2 strongswan-b6f19a6ab4dbe139c6ed8b863db69df7c40a391c.tar.xz |
used rsa coeff field in OpenPGP secret key payload
-rw-r--r-- | src/libstrongswan/plugins/gmp/gmp_rsa_private_key.c | 57 |
1 files changed, 32 insertions, 25 deletions
diff --git a/src/libstrongswan/plugins/gmp/gmp_rsa_private_key.c b/src/libstrongswan/plugins/gmp/gmp_rsa_private_key.c index bc79beb6a..88093079b 100644 --- a/src/libstrongswan/plugins/gmp/gmp_rsa_private_key.c +++ b/src/libstrongswan/plugins/gmp/gmp_rsa_private_key.c @@ -827,31 +827,41 @@ static gmp_rsa_private_key_t *load_pgp(chunk_t blob) mpz_init(this->exp2); mpz_init(this->coeff); - for (objectID = PRIV_KEY_MODULUS; objectID <= PRIV_KEY_PRIME2; objectID++) + for (objectID = PRIV_KEY_MODULUS; objectID <= PRIV_KEY_COEFF; objectID++) { chunk_t object; - if (objectID == PRIV_KEY_PRIV_EXP) + switch (objectID) { - pgp_sym_alg_t s2k; + case PRIV_KEY_PRIV_EXP: + { + pgp_sym_alg_t s2k; - /* string-to-key usage */ - s2k = pgp_length(&packet, 1); - DBG2("L3 - string-to-key: %d", s2k); + /* string-to-key usage */ + s2k = pgp_length(&packet, 1); + DBG2("L3 - string-to-key: %d", s2k); - if (s2k == 255 || s2k == 254) - { - DBG1("string-to-key specifiers not supported"); - goto end; - } - DBG2(" %N", pgp_sym_alg_names, s2k); + if (s2k == 255 || s2k == 254) + { + DBG1("string-to-key specifiers not supported"); + goto end; + } + DBG2(" %N", pgp_sym_alg_names, s2k); - if (s2k != PGP_SYM_ALG_PLAIN) - { - DBG1("%N encryption not supported", pgp_sym_alg_names, s2k); - goto end; + if (s2k != PGP_SYM_ALG_PLAIN) + { + DBG1("%N encryption not supported", pgp_sym_alg_names, s2k); + goto end; + } + break; } - } + case PRIV_KEY_EXP1: + case PRIV_KEY_EXP2: + /* not contained in OpenPGP secret key payload */ + continue; + default: + break; + } DBG2("L3 - %s:", privkeyObjects[objectID].name); object.len = pgp_length(&packet, 2); @@ -884,10 +894,13 @@ static gmp_rsa_private_key_t *load_pgp(chunk_t blob) mpz_import(this->d, object.len, 1, 1, 1, 0, object.ptr); break; case PRIV_KEY_PRIME1: - mpz_import(this->p, object.len, 1, 1, 1, 0, object.ptr); + mpz_import(this->q, object.len, 1, 1, 1, 0, object.ptr); break; case PRIV_KEY_PRIME2: - mpz_import(this->q, object.len, 1, 1, 1, 0, object.ptr); + mpz_import(this->p, object.len, 1, 1, 1, 0, object.ptr); + break; + case PRIV_KEY_COEFF: + mpz_import(this->coeff, object.len, 1, 1, 1, 0, object.ptr); break; } } @@ -903,12 +916,6 @@ static gmp_rsa_private_key_t *load_pgp(chunk_t blob) mpz_sub_ui(u, this->q, 1); mpz_mod(this->exp2, this->d, u); - /* coeff = (q^-1) mod p */ - mpz_invert(this->coeff, this->q, this->p); - if (mpz_cmp_ui(this->coeff, 0) < 0) - { - mpz_add(this->coeff, this->coeff, this->p); - } mpz_clear(u); chunk_clear(&blob); |