- began to implement aes_crypter_t

This commit is contained in:
Jan Hutter 2005-11-25 16:57:20 +00:00
parent ca76df9736
commit c00894b06e
3 changed files with 144 additions and 0 deletions

View File

@ -17,3 +17,7 @@ CRYPTERS_DIR= $(TRANSFORMS_DIR)crypters/
OBJS+= $(BUILD_DIR)crypter.o
$(BUILD_DIR)crypter.o : $(CRYPTERS_DIR)crypter.c $(CRYPTERS_DIR)crypter.h
$(CC) $(CFLAGS) -c -o $@ $<
OBJS+= $(BUILD_DIR)aes_crypter.o
$(BUILD_DIR)aes_crypter.o : $(CRYPTERS_DIR)aes_crypter.c $(CRYPTERS_DIR)aes_crypter.h
$(CC) $(CFLAGS) -c -o $@ $<

View File

@ -0,0 +1,90 @@
/**
* @file aes_crypter.c
*
* @brief Implementation of aes_crypter_t
*
*/
#include "aes_crypter.h"
#include <utils/allocator.h>
typedef struct private_aes_crypter_t private_aes_crypter_t;
/**
* @brief Class implementing the AES symmetric encryption algorithm.
*
* @ingroup crypters
*/
struct private_aes_crypter_t {
/**
* Public part of this class
*/
aes_crypter_t public;
};
/**
* Implementation of crypter_t.encrypt.
*/
static status_t encrypt (private_aes_crypter_t *this, chunk_t data, chunk_t *encrypted)
{
return SUCCESS;
}
/**
* Implementation of crypter_t.decrypt.
*/
static status_t decrypt (private_aes_crypter_t *this, chunk_t data, chunk_t *decrypted)
{
return SUCCESS;
}
/**
* Implementation of crypter_t.get_block_size.
*/
static size_t get_block_size (private_aes_crypter_t *this)
{
return SUCCESS;
}
/**
* Implementation of crypter_t.set_key.
*/
static status_t set_key (private_aes_crypter_t *this, chunk_t key)
{
return SUCCESS;
}
/**
* Implementation of crypter_t.destroy and aes_crypter_t.destroy.
*/
static status_t destroy (private_aes_crypter_t *this)
{
return SUCCESS;
}
aes_crypter_t *aes_crypter_create()
{
private_aes_crypter_t *this = allocator_alloc_thing(private_aes_crypter_t);
if (this == NULL)
{
return NULL;
}
/* functions of crypter_t interface */
this->public.crypter_interface.encrypt = (status_t (*) (crypter_t *, chunk_t , chunk_t *)) encrypt;
this->public.crypter_interface.decrypt = (status_t (*) (crypter_t *, chunk_t , chunk_t *)) decrypt;
this->public.crypter_interface.get_block_size = (size_t (*) (crypter_t *)) get_block_size;
this->public.crypter_interface.set_key = (status_t (*) (crypter_t *,chunk_t)) set_key;
this->public.crypter_interface.destroy = (status_t (*) (crypter_t *)) destroy;
/* public functions */
this->public.destroy = (status_t (*) (aes_crypter_t *)) destroy;
return &(this->public);
}

View File

@ -0,0 +1,50 @@
/**
* @file aes_crypter.h
*
* @brief Interface of aes_crypter_t
*
*/
#ifndef _AES_CRYPTER_H_
#define _AES_CRYPTER_H_
#include <transforms/crypters/crypter.h>
typedef struct aes_crypter_t aes_crypter_t;
/**
* @brief Class implementing the AES symmetric encryption algorithm.
*
* @ingroup crypters
*/
struct aes_crypter_t {
/**
* crypter_t interface.
*/
crypter_t crypter_interface;
/**
* @brief Destroys a aes_crypter_t object.
*
* @param this crypter_t object to destroy
* @return
* - SUCCESS in any case
*/
status_t (*destroy) (aes_crypter_t *this);
};
/**
* @brief Constructor to create aes_crypter_t objects.
*
* @return
* - aes_crypter_t if successfully
* - NULL if out of ressources
*/
aes_crypter_t *aes_crypter_create();
#endif //_AES_CRYPTER_H_