diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 06:58:34 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 06:58:34 +0000 |
commit | 78f837b0cbd82b3f36df9e32130672e5f12df718 (patch) | |
tree | db3ebaaa84c4f393934eb039899a1f727ac332e6 /Source/charon/transforms/diffie_hellman.h | |
parent | d048df5cabd2d17713230f260bccebb205740498 (diff) | |
download | strongswan-78f837b0cbd82b3f36df9e32130672e5f12df718.tar.bz2 strongswan-78f837b0cbd82b3f36df9e32130672e5f12df718.tar.xz |
- diffie hellman code cleaned
Diffstat (limited to 'Source/charon/transforms/diffie_hellman.h')
-rw-r--r-- | Source/charon/transforms/diffie_hellman.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/charon/transforms/diffie_hellman.h b/Source/charon/transforms/diffie_hellman.h index c3ca32524..1d568232a 100644 --- a/Source/charon/transforms/diffie_hellman.h +++ b/Source/charon/transforms/diffie_hellman.h @@ -106,11 +106,8 @@ struct diffie_hellman_t { * * @param this calling diffie_hellman_t object * @param[out] public_value public value of caller is stored at this location - * @return - * - SUCCESS, or - * - FAILED if not computed */ - status_t (*get_my_public_value) (diffie_hellman_t *this, chunk_t *public_value); + void (*get_my_public_value) (diffie_hellman_t *this, chunk_t *public_value); /** * @brief Destroys an diffie_hellman_t object. |