2015-04-02 08:56:18 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup sys_crypto
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file ecb.h
|
|
|
|
* @brief Electronic code book mode of operation for block ciphers
|
|
|
|
*
|
|
|
|
* @author Freie Universitaet Berlin, Computer Systems & Telematics
|
|
|
|
* @author Nico von Geyso <nico.geyso@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef CRYPTO_MODES_ECB_H
|
|
|
|
#define CRYPTO_MODES_ECB_H
|
2015-04-02 08:56:18 +02:00
|
|
|
|
|
|
|
#include "crypto/ciphers.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Encrypt data of arbitrary length in ecb mode. Caution each identical
|
|
|
|
* block results in an identical encrypted block. Normally you do not
|
|
|
|
* want to use ECB.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param cipher Already initialized cipher struct
|
|
|
|
* @param input pointer to input data to encrypt
|
|
|
|
* @param length length of the input data
|
|
|
|
* @param output pointer to allocated memory for encrypted data. It has to
|
|
|
|
* be of size data_len + BLOCK_SIZE - data_len % BLOCK_SIZE.
|
|
|
|
*/
|
|
|
|
int cipher_encrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
|
|
|
|
uint8_t* output);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Decrypts data of arbitrary length in ecb mode.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param cipher Already initialized cipher struct
|
|
|
|
* @param input pointer to input data to decrypt
|
|
|
|
* @param length length of the input data
|
|
|
|
* @param output pointer to allocated memory for plaintext data. It has to
|
|
|
|
* be of size `lengh`.
|
|
|
|
*/
|
|
|
|
int cipher_decrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
|
|
|
|
uint8_t* output);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-22 15:44:23 +02:00
|
|
|
#endif /* CRYPTO_MODES_ECB_H_*/
|