- fixed message decryption

This commit is contained in:
Martin Willi
2005-11-30 10:23:15 +00:00
parent b09e85f929
commit bc7883029a
3 changed files with 103 additions and 28 deletions
@@ -66,6 +66,25 @@ struct encryption_payload_t {
*/
void (*add_payload) (encryption_payload_t *this, payload_t *payload);
/**
* @brief Reove the last payload in the contained payload list.
*
* @param this calling encryption_payload_t object
* @param[out] payload removed payload
* @return
* - SUCCESS, or
* - NOT_FOUND if list empty
*/
status_t (*remove_first_payload) (encryption_payload_t *this, payload_t **payload);
/**
* @brief Get the number of payloads.
*
* @param this calling encryption_payload_t object
* @return number of contained payloads
*/
size_t (*get_payload_count) (encryption_payload_t *this);
/**
* @brief Set transforms to use.
*