aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2008-11-04 13:12:11 +0000
committerMartin Willi <martin@strongswan.org>2008-11-04 13:12:11 +0000
commitd4f08fe324ea2d509955eca93af34bc0684beed0 (patch)
tree50f4cdcf7f71d9a843aa988892e2474da13af7fe /src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c
parentddd7e6c6566d0dc0edced735aec2147afb4d28d3 (diff)
downloadstrongswan-d4f08fe324ea2d509955eca93af34bc0684beed0.tar.bz2
strongswan-d4f08fe324ea2d509955eca93af34bc0684beed0.tar.xz
removed superfluous get_other_public_value in diffie_hellman_t interface
Diffstat (limited to 'src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c')
-rw-r--r--src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c31
1 files changed, 4 insertions, 27 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c b/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c
index 176409fde..8abeaa415 100644
--- a/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c
+++ b/src/libstrongswan/plugins/openssl/openssl_diffie_hellman.c
@@ -101,37 +101,15 @@ struct private_openssl_diffie_hellman_t {
};
/**
- * Convert a BIGNUM to a chunk
- */
-static void bn2chunk(private_openssl_diffie_hellman_t *this,
- BIGNUM *bn, chunk_t *chunk)
-{
- *chunk = chunk_alloc(DH_size(this->dh));
- memset(chunk->ptr, 0, chunk->len);
- BN_bn2bin(bn, chunk->ptr + chunk->len - BN_num_bytes(bn));
-}
-
-/**
- * Implementation of openssl_diffie_hellman_t.get_other_public_value.
- */
-static status_t get_other_public_value(private_openssl_diffie_hellman_t *this,
- chunk_t *value)
-{
- if (!this->computed)
- {
- return FAILED;
- }
- bn2chunk(this, this->pub_key, value);
- return SUCCESS;
-}
-
-/**
* Implementation of openssl_diffie_hellman_t.get_my_public_value.
*/
static void get_my_public_value(private_openssl_diffie_hellman_t *this,
chunk_t *value)
{
- bn2chunk(this, this->dh->pub_key, value);
+ *value = chunk_alloc(DH_size(this->dh));
+ memset(value->ptr, 0, value->len);
+ BN_bn2bin(this->dh->pub_key,
+ value->ptr + value->len - BN_num_bytes(this->dh->pub_key));
}
/**
@@ -232,7 +210,6 @@ openssl_diffie_hellman_t *openssl_diffie_hellman_create(diffie_hellman_group_t g
this->public.dh.get_shared_secret = (status_t (*)(diffie_hellman_t *, chunk_t *)) get_shared_secret;
this->public.dh.set_other_public_value = (void (*)(diffie_hellman_t *, chunk_t )) set_other_public_value;
- this->public.dh.get_other_public_value = (status_t (*)(diffie_hellman_t *, chunk_t *)) get_other_public_value;
this->public.dh.get_my_public_value = (void (*)(diffie_hellman_t *, chunk_t *)) get_my_public_value;
this->public.dh.get_dh_group = (diffie_hellman_group_t (*)(diffie_hellman_t *)) get_dh_group;
this->public.dh.destroy = (void (*)(diffie_hellman_t *)) destroy;