aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/gcrypt/gcrypt_dh.c
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2015-03-23 11:37:27 +0100
committerMartin Willi <martin@revosec.ch>2015-03-23 17:54:03 +0100
commit42431690e04a8614e759e0a3a3bcd76e30e6207e (patch)
tree4c473700dffe096c07d8117fb7a0df71fc5be56f /src/libstrongswan/plugins/gcrypt/gcrypt_dh.c
parent8a7dbf3c2a0a4e8a4a503b630dbad0d46ae25756 (diff)
downloadstrongswan-42431690e04a8614e759e0a3a3bcd76e30e6207e.tar.bz2
strongswan-42431690e04a8614e759e0a3a3bcd76e30e6207e.tar.xz
diffie-hellman: Add a bool return value to get_my_public_value()
Diffstat (limited to 'src/libstrongswan/plugins/gcrypt/gcrypt_dh.c')
-rw-r--r--src/libstrongswan/plugins/gcrypt/gcrypt_dh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/gcrypt/gcrypt_dh.c b/src/libstrongswan/plugins/gcrypt/gcrypt_dh.c
index 44f33c9a6..9714dd68f 100644
--- a/src/libstrongswan/plugins/gcrypt/gcrypt_dh.c
+++ b/src/libstrongswan/plugins/gcrypt/gcrypt_dh.c
@@ -132,10 +132,11 @@ static chunk_t export_mpi(gcry_mpi_t value, size_t len)
return chunk;
}
-METHOD(diffie_hellman_t, get_my_public_value, void,
+METHOD(diffie_hellman_t, get_my_public_value, bool,
private_gcrypt_dh_t *this, chunk_t *value)
{
*value = export_mpi(this->ya, this->p_len);
+ return TRUE;
}
METHOD(diffie_hellman_t, get_shared_secret, bool,