strongswan/src/charon/encoding/payloads/encryption_payload.c

620 lines
18 KiB
C
Raw Normal View History

2005-11-28 15:53:35 +00:00
/*
2006-07-07 08:49:06 +00:00
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
2005-11-28 15:53:35 +00:00
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
2005-11-28 15:53:35 +00:00
#include <stddef.h>
#include <string.h>
2005-11-28 15:53:35 +00:00
#include "encryption_payload.h"
#include <daemon.h>
2005-11-28 15:53:35 +00:00
#include <encoding/payloads/encodings.h>
#include <utils/linked_list.h>
#include <encoding/generator.h>
#include <encoding/parser.h>
#include <utils/iterator.h>
2006-04-05 12:10:50 +00:00
#include <crypto/signers/signer.h>
2005-11-28 15:53:35 +00:00
typedef struct private_encryption_payload_t private_encryption_payload_t;
/**
2005-11-28 18:24:10 +00:00
* Private data of an encryption_payload_t' Object.
2005-11-28 15:53:35 +00:00
*
*/
struct private_encryption_payload_t {
2005-12-06 13:44:22 +00:00
2005-11-28 15:53:35 +00:00
/**
2005-11-28 18:24:10 +00:00
* Public encryption_payload_t interface.
2005-11-28 15:53:35 +00:00
*/
encryption_payload_t public;
/**
* There is no next payload for an encryption payload,
* since encryption payload MUST be the last one.
* next_payload means here the first payload of the
* contained, encrypted payload.
*/
u_int8_t next_payload;
/**
2005-11-28 18:24:10 +00:00
* Critical flag.
2005-11-28 15:53:35 +00:00
*/
bool critical;
/**
* Length of this payload
*/
u_int16_t payload_length;
/**
2005-11-28 18:24:10 +00:00
* Chunk containing the iv, data, padding,
* and (an eventually not calculated) signature.
2005-11-28 15:53:35 +00:00
*/
chunk_t encrypted;
/**
2005-11-28 18:24:10 +00:00
* Chunk containing the data in decrypted (unpadded) form.
2005-11-28 15:53:35 +00:00
*/
chunk_t decrypted;
/**
2005-11-28 18:24:10 +00:00
* Signer set by set_signer.
2005-11-28 15:53:35 +00:00
*/
signer_t *signer;
2005-11-29 15:58:09 +00:00
/**
* Crypter, supplied by encrypt/decrypt
*/
crypter_t *crypter;
2005-11-28 15:53:35 +00:00
/**
2005-11-28 18:24:10 +00:00
* Contained payloads of this encrpytion_payload.
2005-11-28 15:53:35 +00:00
*/
linked_list_t *payloads;
};
/**
2005-11-28 18:24:10 +00:00
* Encoding rules to parse or generate a IKEv2-Encryption Payload.
2005-11-28 15:53:35 +00:00
*
* The defined offsets are the positions in a object of type
* private_encryption_payload_t.
*
*/
encoding_rule_t encryption_payload_encodings[] = {
/* 1 Byte next payload type, stored in the field next_payload */
{ U_INT_8, offsetof(private_encryption_payload_t, next_payload) },
/* the critical bit */
{ FLAG, offsetof(private_encryption_payload_t, critical) },
/* 7 Bit reserved bits, nowhere stored */
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
/* Length of the whole encryption payload*/
{ PAYLOAD_LENGTH, offsetof(private_encryption_payload_t, payload_length) },
/* encrypted data, stored in a chunk. contains iv, data, padding */
{ ENCRYPTED_DATA, offsetof(private_encryption_payload_t, encrypted) },
};
/*
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! Next Payload !C! RESERVED ! Payload Length !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! Initialization Vector !
! (length is block size for encryption algorithm) !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! Encrypted IKE Payloads !
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! ! Padding (0-255 octets) !
+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+
! ! Pad Length !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
~ Integrity Checksum Data ~
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.verify.
2005-11-28 15:53:35 +00:00
*/
static status_t verify(private_encryption_payload_t *this)
{
2005-11-30 09:11:48 +00:00
return SUCCESS;
2005-11-28 15:53:35 +00:00
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_encoding_rules.
2005-11-28 15:53:35 +00:00
*/
2005-11-28 18:24:10 +00:00
static void get_encoding_rules(private_encryption_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
2005-11-28 15:53:35 +00:00
{
*rules = encryption_payload_encodings;
*rule_count = sizeof(encryption_payload_encodings) / sizeof(encoding_rule_t);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_type.
2005-11-28 15:53:35 +00:00
*/
static payload_type_t get_type(private_encryption_payload_t *this)
{
return ENCRYPTED;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_next_type.
2005-11-28 15:53:35 +00:00
*/
static payload_type_t get_next_type(private_encryption_payload_t *this)
{
/* returns first contained payload here */
return (this->next_payload);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.set_next_type.
2005-11-28 15:53:35 +00:00
*/
2005-11-28 18:24:10 +00:00
static void set_next_type(private_encryption_payload_t *this, payload_type_t type)
2005-11-28 15:53:35 +00:00
{
2005-11-28 18:24:10 +00:00
/* set next type is not allowed, since this payload MUST be the last one
* and so nothing is done in here*/
2005-11-28 15:53:35 +00:00
}
/**
* (re-)compute the lenght of the whole payload
*/
static void compute_length(private_encryption_payload_t *this)
{
iterator_t *iterator;
payload_t *current_payload;
size_t block_size, length = 0;
iterator = this->payloads->create_iterator(this->payloads, TRUE);
/* count payload length */
while (iterator->iterate(iterator, (void **) &current_payload))
{
length += current_payload->get_length(current_payload);
}
iterator->destroy(iterator);
if (this->crypter && this->signer)
{
/* append one byte for padding length */
length++;
/* append padding */
block_size = this->crypter->get_block_size(this->crypter);
length += block_size - length % block_size;
/* add iv */
length += block_size;
/* add signature */
length += this->signer->get_block_size(this->signer);
}
length += ENCRYPTION_PAYLOAD_HEADER_LENGTH;
this->payload_length = length;
}
2005-11-28 15:53:35 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_length.
2005-11-28 15:53:35 +00:00
*/
static size_t get_length(private_encryption_payload_t *this)
{
compute_length(this);
2005-11-28 15:53:35 +00:00
return this->payload_length;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.create_payload_iterator.
2005-11-28 15:53:35 +00:00
*/
static iterator_t *create_payload_iterator (private_encryption_payload_t *this, bool forward)
2005-11-28 15:53:35 +00:00
{
return (this->payloads->create_iterator(this->payloads, forward));
2005-11-28 15:53:35 +00:00
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.add_payload.
2005-11-28 15:53:35 +00:00
*/
2005-11-28 18:24:10 +00:00
static void add_payload(private_encryption_payload_t *this, payload_t *payload)
2005-11-28 15:53:35 +00:00
{
payload_t *last_payload;
2005-11-28 18:24:10 +00:00
if (this->payloads->get_count(this->payloads) > 0)
2005-11-28 15:53:35 +00:00
{
2005-11-28 18:24:10 +00:00
this->payloads->get_last(this->payloads,(void **) &last_payload);
2005-11-29 15:58:09 +00:00
last_payload->set_next_type(last_payload, payload->get_type(payload));
2005-11-28 15:53:35 +00:00
}
else
{
2005-11-29 15:58:09 +00:00
this->next_payload = payload->get_type(payload);
2005-11-28 15:53:35 +00:00
}
payload->set_next_type(payload, NO_PAYLOAD);
2005-11-29 15:58:09 +00:00
this->payloads->insert_last(this->payloads, (void*)payload);
compute_length(this);
2005-11-28 15:53:35 +00:00
}
2005-11-30 10:23:15 +00:00
/**
* Implementation of encryption_payload_t.remove_first_payload.
*/
static status_t remove_first_payload(private_encryption_payload_t *this, payload_t **payload)
{
return this->payloads->remove_first(this->payloads, (void**)payload);
}
/**
* Implementation of encryption_payload_t.get_payload_count.
*/
static size_t get_payload_count(private_encryption_payload_t *this)
{
return this->payloads->get_count(this->payloads);
}
/**
* Generate payload before encryption.
*/
static void generate(private_encryption_payload_t *this)
{
payload_t *current_payload, *next_payload;
generator_t *generator;
iterator_t *iterator;
/* recalculate length before generating */
compute_length(this);
/* create iterator */
iterator = this->payloads->create_iterator(this->payloads, TRUE);
/* get first payload */
if (iterator->iterate(iterator, (void**)&current_payload))
{
this->next_payload = current_payload->get_type(current_payload);
}
else
{
/* no paylads? */
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "generating contained payloads, but none available");
free(this->decrypted.ptr);
this->decrypted = chunk_empty;
iterator->destroy(iterator);
return;
}
generator = generator_create();
/* build all payload, except last */
while(iterator->iterate(iterator, (void**)&next_payload))
{
current_payload->set_next_type(current_payload, next_payload->get_type(next_payload));
generator->generate_payload(generator, current_payload);
current_payload = next_payload;
}
iterator->destroy(iterator);
/* build last payload */
current_payload->set_next_type(current_payload, NO_PAYLOAD);
generator->generate_payload(generator, current_payload);
/* free already generated data */
free(this->decrypted.ptr);
generator->write_to_chunk(generator, &(this->decrypted));
generator->destroy(generator);
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "successfully generated content in encryption payload");
}
2005-11-30 10:23:15 +00:00
2005-11-28 15:53:35 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of encryption_payload_t.encrypt.
2005-11-28 15:53:35 +00:00
*/
2005-11-29 15:58:09 +00:00
static status_t encrypt(private_encryption_payload_t *this)
2005-11-28 15:53:35 +00:00
{
2005-11-29 15:58:09 +00:00
chunk_t iv, padding, to_crypt, result;
rng_t *rng;
2005-11-29 15:58:09 +00:00
size_t block_size;
2005-11-28 15:53:35 +00:00
2005-11-29 15:58:09 +00:00
if (this->signer == NULL || this->crypter == NULL)
2005-11-28 15:53:35 +00:00
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "could not encrypt, signer/crypter not set");
2005-11-28 15:53:35 +00:00
return INVALID_STATE;
}
/* for random data in iv and padding */
rng = lib->crypto->create_rng(lib->crypto, RNG_WEAK);
if (!rng)
{
DBG1(DBG_ENC, "could not encrypt, no RNG found");
return FAILED;
}
2005-11-28 15:53:35 +00:00
/* build payload chunk */
generate(this);
2005-11-28 15:53:35 +00:00
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "encrypting payloads");
DBG3(DBG_ENC, "data to encrypt %B", &this->decrypted);
2005-11-28 15:53:35 +00:00
/* build padding */
2005-11-29 15:58:09 +00:00
block_size = this->crypter->get_block_size(this->crypter);
padding.len = block_size - ((this->decrypted.len + 1) % block_size);
rng->allocate_bytes(rng, padding.len, &padding);
2005-11-28 15:53:35 +00:00
/* concatenate payload data, padding, padding len */
2005-11-29 15:58:09 +00:00
to_crypt.len = this->decrypted.len + padding.len + 1;
to_crypt.ptr = malloc(to_crypt.len);
2005-11-28 15:53:35 +00:00
2005-11-29 15:58:09 +00:00
memcpy(to_crypt.ptr, this->decrypted.ptr, this->decrypted.len);
memcpy(to_crypt.ptr + this->decrypted.len, padding.ptr, padding.len);
*(to_crypt.ptr + to_crypt.len - 1) = padding.len;
2005-11-28 15:53:35 +00:00
/* build iv */
2005-11-29 15:58:09 +00:00
iv.len = block_size;
rng->allocate_bytes(rng, iv.len, &iv);
rng->destroy(rng);
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data before encryption with padding %B", &to_crypt);
2005-11-29 15:58:09 +00:00
/* encrypt to_crypt chunk */
free(this->encrypted.ptr);
this->crypter->encrypt(this->crypter, to_crypt, iv, &result);
free(padding.ptr);
free(to_crypt.ptr);
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data after encryption %B", &result);
2005-11-28 15:53:35 +00:00
2005-11-29 15:58:09 +00:00
/* build encrypted result with iv and signature */
this->encrypted.len = iv.len + result.len + this->signer->get_block_size(this->signer);
free(this->encrypted.ptr);
this->encrypted.ptr = malloc(this->encrypted.len);
2005-11-29 15:58:09 +00:00
/* fill in result, signature is left out */
memcpy(this->encrypted.ptr, iv.ptr, iv.len);
memcpy(this->encrypted.ptr + iv.len, result.ptr, result.len);
free(result.ptr);
free(iv.ptr);
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data after encryption with IV and (invalid) signature %B",
&this->encrypted);
2005-11-28 15:53:35 +00:00
return SUCCESS;
}
/**
* Parse the payloads after decryption.
*/
static status_t parse(private_encryption_payload_t *this)
{
parser_t *parser;
status_t status;
payload_type_t current_payload_type;
/* build a parser on the decrypted data */
parser = parser_create(this->decrypted);
current_payload_type = this->next_payload;
/* parse all payloads */
while (current_payload_type != NO_PAYLOAD)
{
payload_t *current_payload;
status = parser->parse_payload(parser, current_payload_type, (payload_t**)&current_payload);
if (status != SUCCESS)
{
parser->destroy(parser);
return PARSE_ERROR;
}
status = current_payload->verify(current_payload);
if (status != SUCCESS)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "%N verification failed",
payload_type_names, current_payload->get_type(current_payload));
current_payload->destroy(current_payload);
parser->destroy(parser);
return VERIFY_ERROR;
}
/* get next payload type */
current_payload_type = current_payload->get_next_type(current_payload);
this->payloads->insert_last(this->payloads,current_payload);
}
parser->destroy(parser);
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "succesfully parsed content of encryption payload");
return SUCCESS;
}
2005-11-28 15:53:35 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of encryption_payload_t.encrypt.
2005-11-28 15:53:35 +00:00
*/
2005-11-29 15:58:09 +00:00
static status_t decrypt(private_encryption_payload_t *this)
2005-11-28 15:53:35 +00:00
{
chunk_t iv, concatenated;
u_int8_t padding_length;
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "decrypting encryption payload");
DBG3(DBG_ENC, "data before decryption with IV and (invalid) signature %B",
&this->encrypted);
2005-11-29 15:58:09 +00:00
if (this->signer == NULL || this->crypter == NULL)
2005-11-28 15:53:35 +00:00
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "could not decrypt, no crypter/signer set");
2005-11-28 15:53:35 +00:00
return INVALID_STATE;
}
2005-11-30 10:23:15 +00:00
2005-11-28 15:53:35 +00:00
/* get IV */
2005-11-29 15:58:09 +00:00
iv.len = this->crypter->get_block_size(this->crypter);
2005-12-02 16:09:04 +00:00
2005-11-28 15:53:35 +00:00
iv.ptr = this->encrypted.ptr;
/* point concatenated to data + padding + padding_length*/
concatenated.ptr = this->encrypted.ptr + iv.len;
concatenated.len = this->encrypted.len - iv.len -
this->signer->get_block_size(this->signer);
2005-11-29 15:58:09 +00:00
/* concatenated must be a multiple of block_size of crypter */
if (concatenated.len < iv.len || concatenated.len % iv.len)
2005-11-28 15:53:35 +00:00
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "could not decrypt, invalid input");
2005-11-28 15:53:35 +00:00
return FAILED;
}
/* free previus data, if any */
free(this->decrypted.ptr);
2005-11-28 15:53:35 +00:00
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data before decryption %B", &concatenated);
this->crypter->decrypt(this->crypter, concatenated, iv, &this->decrypted);
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data after decryption with padding %B", &this->decrypted);
2005-11-28 15:53:35 +00:00
/* get padding length, sits just bevore signature */
padding_length = *(this->decrypted.ptr + this->decrypted.len - 1);
/* add one byte to the padding length, since the padding_length field is
* not included */
2005-11-29 15:58:09 +00:00
padding_length++;
2005-11-28 15:53:35 +00:00
this->decrypted.len -= padding_length;
/* check size again */
if (padding_length > concatenated.len || this->decrypted.len < 0)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "decryption failed, invalid padding length found. Invalid key?");
2005-11-28 15:53:35 +00:00
/* decryption failed :-/ */
return FAILED;
}
/* free padding */
this->decrypted.ptr = realloc(this->decrypted.ptr, this->decrypted.len);
2006-10-26 09:46:56 +00:00
DBG3(DBG_ENC, "data after decryption without padding %B", &this->decrypted);
DBG2(DBG_ENC, "decryption successful, trying to parse content");
return parse(this);
2005-11-28 15:53:35 +00:00
}
/**
2005-11-29 15:58:09 +00:00
* Implementation of encryption_payload_t.set_transforms.
2005-11-28 15:53:35 +00:00
*/
2005-11-29 15:58:09 +00:00
static void set_transforms(private_encryption_payload_t *this, crypter_t* crypter, signer_t* signer)
2005-11-28 15:53:35 +00:00
{
this->signer = signer;
2005-11-29 15:58:09 +00:00
this->crypter = crypter;
2005-11-28 15:53:35 +00:00
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of encryption_payload_t.build_signature.
2005-11-28 15:53:35 +00:00
*/
static status_t build_signature(private_encryption_payload_t *this, chunk_t data)
{
chunk_t data_without_sig = data;
chunk_t sig;
if (this->signer == NULL)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "unable to build signature, no signer set");
2005-11-28 15:53:35 +00:00
return INVALID_STATE;
}
sig.len = this->signer->get_block_size(this->signer);
data_without_sig.len -= sig.len;
sig.ptr = data.ptr + data_without_sig.len;
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "building signature");
2005-11-28 15:53:35 +00:00
this->signer->get_signature(this->signer, data_without_sig, sig.ptr);
return SUCCESS;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of encryption_payload_t.verify_signature.
2005-11-28 15:53:35 +00:00
*/
static status_t verify_signature(private_encryption_payload_t *this, chunk_t data)
{
chunk_t sig, data_without_sig;
bool valid;
if (this->signer == NULL)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "unable to verify signature, no signer set");
2005-11-28 15:53:35 +00:00
return INVALID_STATE;
}
/* find signature in data chunk */
sig.len = this->signer->get_block_size(this->signer);
if (data.len <= sig.len)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "unable to verify signature, invalid input");
2005-11-28 15:53:35 +00:00
return FAILED;
}
sig.ptr = data.ptr + data.len - sig.len;
/* verify it */
data_without_sig.len = data.len - sig.len;
data_without_sig.ptr = data.ptr;
2005-12-06 16:04:39 +00:00
valid = this->signer->verify_signature(this->signer, data_without_sig, sig);
2005-11-28 15:53:35 +00:00
if (!valid)
{
2006-10-26 09:46:56 +00:00
DBG1(DBG_ENC, "signature verification failed");
2005-11-28 15:53:35 +00:00
return FAILED;
}
2006-10-26 09:46:56 +00:00
DBG2(DBG_ENC, "signature verification successful");
2005-11-28 15:53:35 +00:00
return SUCCESS;
}
/**
* Implementation of payload_t.destroy.
*/
static void destroy(private_encryption_payload_t *this)
{
this->payloads->destroy_offset(this->payloads, offsetof(payload_t, destroy));
free(this->encrypted.ptr);
free(this->decrypted.ptr);
free(this);
}
2005-11-28 15:53:35 +00:00
/*
* Described in header
*/
encryption_payload_t *encryption_payload_create()
{
private_encryption_payload_t *this = malloc_thing(private_encryption_payload_t);
2005-11-28 15:53:35 +00:00
/* payload_t interface functions */
this->public.payload_interface.verify = (status_t (*) (payload_t *))verify;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.get_encoding_rules = (void (*) (payload_t *, encoding_rule_t **, size_t *) ) get_encoding_rules;
2005-11-28 15:53:35 +00:00
this->public.payload_interface.get_length = (size_t (*) (payload_t *)) get_length;
this->public.payload_interface.get_next_type = (payload_type_t (*) (payload_t *)) get_next_type;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.set_next_type = (void (*) (payload_t *,payload_type_t)) set_next_type;
2005-11-28 15:53:35 +00:00
this->public.payload_interface.get_type = (payload_type_t (*) (payload_t *)) get_type;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.destroy = (void (*) (payload_t *))destroy;
2005-11-28 15:53:35 +00:00
/* public functions */
this->public.create_payload_iterator = (iterator_t * (*) (encryption_payload_t *,bool)) create_payload_iterator;
2005-11-28 18:24:10 +00:00
this->public.add_payload = (void (*) (encryption_payload_t *,payload_t *)) add_payload;
2005-11-30 10:23:15 +00:00
this->public.remove_first_payload = (status_t (*)(encryption_payload_t*, payload_t **)) remove_first_payload;
this->public.get_payload_count = (size_t (*)(encryption_payload_t*)) get_payload_count;
2005-11-29 15:58:09 +00:00
this->public.encrypt = (status_t (*) (encryption_payload_t *)) encrypt;
this->public.decrypt = (status_t (*) (encryption_payload_t *)) decrypt;
this->public.set_transforms = (void (*) (encryption_payload_t*,crypter_t*,signer_t*)) set_transforms;
2005-11-28 15:53:35 +00:00
this->public.build_signature = (status_t (*) (encryption_payload_t*, chunk_t)) build_signature;
this->public.verify_signature = (status_t (*) (encryption_payload_t*, chunk_t)) verify_signature;
2005-11-28 18:24:10 +00:00
this->public.destroy = (void (*) (encryption_payload_t *)) destroy;
2005-11-28 15:53:35 +00:00
/* set default values of the fields */
this->critical = FALSE;
2005-11-28 15:53:35 +00:00
this->next_payload = NO_PAYLOAD;
this->payload_length = ENCRYPTION_PAYLOAD_HEADER_LENGTH;
this->encrypted = chunk_empty;
this->decrypted = chunk_empty;
2005-11-28 15:53:35 +00:00
this->signer = NULL;
2005-11-29 15:58:09 +00:00
this->crypter = NULL;
2005-11-28 15:53:35 +00:00
this->payloads = linked_list_create();
return (&(this->public));
}