removed superfluous get_other_public_value in diffie_hellman_t interface

This commit is contained in:
Martin Willi
2008-11-04 13:12:11 +00:00
parent ddd7e6c656
commit d4f08fe324
4 changed files with 4 additions and 76 deletions
-10
View File
@@ -84,16 +84,6 @@ struct diffie_hellman_t {
*/
void (*set_other_public_value) (diffie_hellman_t *this, chunk_t value);
/**
* Gets the public value of partner.
*
* Space for returned chunk is allocated and must be freed by the caller.
*
* @param value public value of partner is stored at this location
* @return SUCCESS, FAILED if other public value not set
*/
status_t (*get_other_public_value) (diffie_hellman_t *this, chunk_t *value);
/**
* Gets the own public value to transmit.
*