diff options
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. |