Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
mbedtls
Commits
2cf5a7c9
Commit
2cf5a7c9
authored
Apr 08, 2015
by
Manuel Pégourié-Gonnard
Browse files
The Great Renaming
A simple execution of tmp/invoke-rename.pl
parent
b5904d25
Changes
291
Expand all
Hide whitespace changes
Inline
Side-by-side
configs/README.txt
View file @
2cf5a7c9
...
...
@@ -11,15 +11,15 @@ them, you can pick one of the following methods:
(Depending on your compiler, you may need to ajust the line with
#include "mbedtls/check_config.h" then.)
2. Define
POLARSSL
_CONFIG_FILE and adjust the include path accordingly.
2. Define
MBEDTLS
_CONFIG_FILE and adjust the include path accordingly.
For example, using make:
CFLAGS="-I$PWD/configs -D
POLARSSL
_CONFIG_FILE='<foo.h>'" make
CFLAGS="-I$PWD/configs -D
MBEDTLS
_CONFIG_FILE='<foo.h>'" make
Or, using cmake:
find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
CFLAGS="-I$PWD/configs -D
POLARSSL
_CONFIG_FILE='<foo.h>'" cmake .
CFLAGS="-I$PWD/configs -D
MBEDTLS
_CONFIG_FILE='<foo.h>'" cmake .
make
Note that the second method also works if you want to keep your custom
...
...
configs/config-ccm-psk-tls1_2.h
View file @
2cf5a7c9
...
...
@@ -8,59 +8,59 @@
*
* See README.txt for usage instructions.
*/
#ifndef
POLARSSL
_CONFIG_H
#define
POLARSSL
_CONFIG_H
#ifndef
MBEDTLS
_CONFIG_H
#define
MBEDTLS
_CONFIG_H
/* System support */
//#define
POLARSSL
_HAVE_IPV6 /* Optional */
//#define
POLARSSL
_HAVE_TIME /* Optionally used in Hello messages */
/* Other
POLARSSL
_HAVE_XXX flags irrelevant for this configuration */
//#define
MBEDTLS
_HAVE_IPV6 /* Optional */
//#define
MBEDTLS
_HAVE_TIME /* Optionally used in Hello messages */
/* Other
MBEDTLS
_HAVE_XXX flags irrelevant for this configuration */
/* mbed TLS feature support */
#define
POLARSSL
_KEY_EXCHANGE_PSK_ENABLED
#define
POLARSSL
_SSL_PROTO_TLS1_2
#define
MBEDTLS
_KEY_EXCHANGE_PSK_ENABLED
#define
MBEDTLS
_SSL_PROTO_TLS1_2
/* mbed TLS modules */
#define
POLARSSL
_AES_C
#define
POLARSSL
_CCM_C
#define
POLARSSL
_CIPHER_C
#define
POLARSSL
_CTR_DRBG_C
#define
POLARSSL
_ENTROPY_C
#define
POLARSSL
_MD_C
#define
POLARSSL
_NET_C
#define
POLARSSL
_SHA256_C
#define
POLARSSL
_SSL_CLI_C
#define
POLARSSL
_SSL_SRV_C
#define
POLARSSL
_SSL_TLS_C
#define
MBEDTLS
_AES_C
#define
MBEDTLS
_CCM_C
#define
MBEDTLS
_CIPHER_C
#define
MBEDTLS
_CTR_DRBG_C
#define
MBEDTLS
_ENTROPY_C
#define
MBEDTLS
_MD_C
#define
MBEDTLS
_NET_C
#define
MBEDTLS
_SHA256_C
#define
MBEDTLS
_SSL_CLI_C
#define
MBEDTLS
_SSL_SRV_C
#define
MBEDTLS
_SSL_TLS_C
/* Save RAM at the expense of ROM */
#define
POLARSSL
_AES_ROM_TABLES
#define
MBEDTLS
_AES_ROM_TABLES
/* Save some RAM by adjusting to your exact needs */
#define
POLARSSL
_PSK_MAX_LEN 16
/* 128-bits keys are generally enough */
#define
MBEDTLS
_PSK_MAX_LEN 16
/* 128-bits keys are generally enough */
/*
* You should adjust this to the exact number of sources you're using: default
* is the "platform_entropy_poll" source, but you may want to add other ones
* Minimum is 2 for the entropy test suite.
*/
#define ENTROPY_MAX_SOURCES 2
#define
MBEDTLS_
ENTROPY_MAX_SOURCES 2
/*
* Use only CCM_8 ciphersuites, and
* save ROM and a few bytes of RAM by specifying our own ciphersuite list
*/
#define SSL_CIPHERSUITES \
TLS_PSK_WITH_AES_256_CCM_8, \
TLS_PSK_WITH_AES_128_CCM_8
#define
MBEDTLS_
SSL_CIPHERSUITES \
MBEDTLS_
TLS_PSK_WITH_AES_256_CCM_8, \
MBEDTLS_
TLS_PSK_WITH_AES_128_CCM_8
/*
* Save RAM at the expense of interoperability: do this only if you control
* both ends of the connection! (See comments in "mbedtls/ssl.h".)
* The optimal size here depends on the typical size of records.
*/
#define SSL_MAX_CONTENT_LEN 512
#define
MBEDTLS_
SSL_MAX_CONTENT_LEN 512
#include "check_config.h"
#endif
/*
POLARSSL
_CONFIG_H */
#endif
/*
MBEDTLS
_CONFIG_H */
configs/config-mini-tls1_1.h
View file @
2cf5a7c9
/*
* Minimal configuration for TLS 1.1 (RFC 4346), implementing only the
* required ciphersuite: TLS_RSA_WITH_3DES_EDE_CBC_SHA
* required ciphersuite:
MBEDTLS_
TLS_RSA_WITH_3DES_EDE_CBC_SHA
*
* See README.txt for usage instructions.
*/
#ifndef
POLARSSL
_CONFIG_H
#define
POLARSSL
_CONFIG_H
#ifndef
MBEDTLS
_CONFIG_H
#define
MBEDTLS
_CONFIG_H
/* System support */
#define
POLARSSL
_HAVE_ASM
#define
POLARSSL
_HAVE_TIME
#define
POLARSSL
_HAVE_IPV6
#define
MBEDTLS
_HAVE_ASM
#define
MBEDTLS
_HAVE_TIME
#define
MBEDTLS
_HAVE_IPV6
/* mbed TLS feature support */
#define
POLARSSL
_CIPHER_MODE_CBC
#define
POLARSSL
_PKCS1_V15
#define
POLARSSL
_KEY_EXCHANGE_RSA_ENABLED
#define
POLARSSL
_SSL_PROTO_TLS1_1
#define
MBEDTLS
_CIPHER_MODE_CBC
#define
MBEDTLS
_PKCS1_V15
#define
MBEDTLS
_KEY_EXCHANGE_RSA_ENABLED
#define
MBEDTLS
_SSL_PROTO_TLS1_1
/* mbed TLS modules */
#define
POLARSSL
_AES_C
#define
POLARSSL
_ASN1_PARSE_C
#define
POLARSSL
_ASN1_WRITE_C
#define
POLARSSL
_BIGNUM_C
#define
POLARSSL
_CIPHER_C
#define
POLARSSL
_CTR_DRBG_C
#define
POLARSSL
_DES_C
#define
POLARSSL
_ENTROPY_C
#define
POLARSSL
_MD_C
#define
POLARSSL
_MD5_C
#define
POLARSSL
_NET_C
#define
POLARSSL
_OID_C
#define
POLARSSL
_PK_C
#define
POLARSSL
_PK_PARSE_C
#define
POLARSSL
_RSA_C
#define
POLARSSL
_SHA1_C
#define
POLARSSL
_SHA256_C
#define
POLARSSL
_SSL_CLI_C
#define
POLARSSL
_SSL_SRV_C
#define
POLARSSL
_SSL_TLS_C
#define
POLARSSL
_X509_CRT_PARSE_C
#define
POLARSSL
_X509_USE_C
#define
MBEDTLS
_AES_C
#define
MBEDTLS
_ASN1_PARSE_C
#define
MBEDTLS
_ASN1_WRITE_C
#define
MBEDTLS
_BIGNUM_C
#define
MBEDTLS
_CIPHER_C
#define
MBEDTLS
_CTR_DRBG_C
#define
MBEDTLS
_DES_C
#define
MBEDTLS
_ENTROPY_C
#define
MBEDTLS
_MD_C
#define
MBEDTLS
_MD5_C
#define
MBEDTLS
_NET_C
#define
MBEDTLS
_OID_C
#define
MBEDTLS
_PK_C
#define
MBEDTLS
_PK_PARSE_C
#define
MBEDTLS
_RSA_C
#define
MBEDTLS
_SHA1_C
#define
MBEDTLS
_SHA256_C
#define
MBEDTLS
_SSL_CLI_C
#define
MBEDTLS
_SSL_SRV_C
#define
MBEDTLS
_SSL_TLS_C
#define
MBEDTLS
_X509_CRT_PARSE_C
#define
MBEDTLS
_X509_USE_C
/* For test certificates */
#define
POLARSSL
_BASE64_C
#define
POLARSSL
_CERTS_C
#define
POLARSSL
_PEM_PARSE_C
#define
MBEDTLS
_BASE64_C
#define
MBEDTLS
_CERTS_C
#define
MBEDTLS
_PEM_PARSE_C
/* For testing with compat.sh */
#define
POLARSSL
_FS_IO
#define
MBEDTLS
_FS_IO
#include "mbedtls/check_config.h"
#endif
/*
POLARSSL
_CONFIG_H */
#endif
/*
MBEDTLS
_CONFIG_H */
configs/config-picocoin.h
View file @
2cf5a7c9
...
...
@@ -9,45 +9,45 @@
* - ECDSA/PK and some other chosen crypto bits.
*/
#ifndef
POLARSSL
_CONFIG_H
#define
POLARSSL
_CONFIG_H
#ifndef
MBEDTLS
_CONFIG_H
#define
MBEDTLS
_CONFIG_H
/* System support */
#define
POLARSSL
_HAVE_LONGLONG
#define
POLARSSL
_HAVE_ASM
#define
POLARSSL
_HAVE_TIME
#define
POLARSSL
_HAVE_IPV6
#define
MBEDTLS
_HAVE_LONGLONG
#define
MBEDTLS
_HAVE_ASM
#define
MBEDTLS
_HAVE_TIME
#define
MBEDTLS
_HAVE_IPV6
/* mbed TLS feature support */
#define
POLARSSL
_CIPHER_MODE_CBC
#define
POLARSSL
_CIPHER_PADDING_PKCS7
#define
POLARSSL
_ECP_DP_SECP256K1_ENABLED
#define
POLARSSL
_ECDSA_DETERMINISTIC
#define
POLARSSL
_PK_PARSE_EC_EXTENDED
#define
POLARSSL
_ERROR_STRERROR_DUMMY
#define
POLARSSL
_FS_IO
#define
MBEDTLS
_CIPHER_MODE_CBC
#define
MBEDTLS
_CIPHER_PADDING_PKCS7
#define
MBEDTLS
_ECP_DP_SECP256K1_ENABLED
#define
MBEDTLS
_ECDSA_DETERMINISTIC
#define
MBEDTLS
_PK_PARSE_EC_EXTENDED
#define
MBEDTLS
_ERROR_STRERROR_DUMMY
#define
MBEDTLS
_FS_IO
/* mbed TLS modules */
#define
POLARSSL
_AESNI_C
#define
POLARSSL
_AES_C
#define
POLARSSL
_ASN1_PARSE_C
#define
POLARSSL
_ASN1_WRITE_C
#define
POLARSSL
_BASE64_C
#define
POLARSSL
_BIGNUM_C
#define
POLARSSL
_ECDSA_C
#define
POLARSSL
_ECP_C
#define
POLARSSL
_ENTROPY_C
#define
POLARSSL
_HMAC_DRBG_C
#define
POLARSSL
_MD_C
#define
POLARSSL
_OID_C
#define
POLARSSL
_PADLOCK_C
#define
POLARSSL
_PK_C
#define
POLARSSL
_PK_PARSE_C
#define
POLARSSL
_PK_WRITE_C
#define
POLARSSL
_RIPEMD160_C
#define
POLARSSL
_SHA1_C
#define
POLARSSL
_SHA256_C
#define
MBEDTLS
_AESNI_C
#define
MBEDTLS
_AES_C
#define
MBEDTLS
_ASN1_PARSE_C
#define
MBEDTLS
_ASN1_WRITE_C
#define
MBEDTLS
_BASE64_C
#define
MBEDTLS
_BIGNUM_C
#define
MBEDTLS
_ECDSA_C
#define
MBEDTLS
_ECP_C
#define
MBEDTLS
_ENTROPY_C
#define
MBEDTLS
_HMAC_DRBG_C
#define
MBEDTLS
_MD_C
#define
MBEDTLS
_OID_C
#define
MBEDTLS
_PADLOCK_C
#define
MBEDTLS
_PK_C
#define
MBEDTLS
_PK_PARSE_C
#define
MBEDTLS
_PK_WRITE_C
#define
MBEDTLS
_RIPEMD160_C
#define
MBEDTLS
_SHA1_C
#define
MBEDTLS
_SHA256_C
#include "check_config.h"
#endif
/*
POLARSSL
_CONFIG_H */
#endif
/*
MBEDTLS
_CONFIG_H */
configs/config-suite-b.h
View file @
2cf5a7c9
...
...
@@ -12,75 +12,75 @@
* See README.txt for usage instructions.
*/
#ifndef
POLARSSL
_CONFIG_H
#define
POLARSSL
_CONFIG_H
#ifndef
MBEDTLS
_CONFIG_H
#define
MBEDTLS
_CONFIG_H
/* System support */
#define
POLARSSL
_HAVE_ASM
#define
POLARSSL
_HAVE_TIME
#define
POLARSSL
_HAVE_IPV6
#define
MBEDTLS
_HAVE_ASM
#define
MBEDTLS
_HAVE_TIME
#define
MBEDTLS
_HAVE_IPV6
/* mbed TLS feature support */
#define
POLARSSL
_ECP_DP_SECP256R1_ENABLED
#define
POLARSSL
_ECP_DP_SECP384R1_ENABLED
#define
POLARSSL
_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
#define
POLARSSL
_SSL_PROTO_TLS1_2
#define
MBEDTLS
_ECP_DP_SECP256R1_ENABLED
#define
MBEDTLS
_ECP_DP_SECP384R1_ENABLED
#define
MBEDTLS
_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
#define
MBEDTLS
_SSL_PROTO_TLS1_2
/* mbed TLS modules */
#define
POLARSSL
_AES_C
#define
POLARSSL
_ASN1_PARSE_C
#define
POLARSSL
_ASN1_WRITE_C
#define
POLARSSL
_BIGNUM_C
#define
POLARSSL
_CIPHER_C
#define
POLARSSL
_CTR_DRBG_C
#define
POLARSSL
_ECDH_C
#define
POLARSSL
_ECDSA_C
#define
POLARSSL
_ECP_C
#define
POLARSSL
_ENTROPY_C
#define
POLARSSL
_GCM_C
#define
POLARSSL
_MD_C
#define
POLARSSL
_NET_C
#define
POLARSSL
_OID_C
#define
POLARSSL
_PK_C
#define
POLARSSL
_PK_PARSE_C
#define
POLARSSL
_SHA256_C
#define
POLARSSL
_SHA512_C
#define
POLARSSL
_SSL_CLI_C
#define
POLARSSL
_SSL_SRV_C
#define
POLARSSL
_SSL_TLS_C
#define
POLARSSL
_X509_CRT_PARSE_C
#define
POLARSSL
_X509_USE_C
#define
MBEDTLS
_AES_C
#define
MBEDTLS
_ASN1_PARSE_C
#define
MBEDTLS
_ASN1_WRITE_C
#define
MBEDTLS
_BIGNUM_C
#define
MBEDTLS
_CIPHER_C
#define
MBEDTLS
_CTR_DRBG_C
#define
MBEDTLS
_ECDH_C
#define
MBEDTLS
_ECDSA_C
#define
MBEDTLS
_ECP_C
#define
MBEDTLS
_ENTROPY_C
#define
MBEDTLS
_GCM_C
#define
MBEDTLS
_MD_C
#define
MBEDTLS
_NET_C
#define
MBEDTLS
_OID_C
#define
MBEDTLS
_PK_C
#define
MBEDTLS
_PK_PARSE_C
#define
MBEDTLS
_SHA256_C
#define
MBEDTLS
_SHA512_C
#define
MBEDTLS
_SSL_CLI_C
#define
MBEDTLS
_SSL_SRV_C
#define
MBEDTLS
_SSL_TLS_C
#define
MBEDTLS
_X509_CRT_PARSE_C
#define
MBEDTLS
_X509_USE_C
/* For test certificates */
#define
POLARSSL
_BASE64_C
#define
POLARSSL
_CERTS_C
#define
POLARSSL
_PEM_PARSE_C
#define
MBEDTLS
_BASE64_C
#define
MBEDTLS
_CERTS_C
#define
MBEDTLS
_PEM_PARSE_C
/* Save RAM at the expense of ROM */
#define
POLARSSL
_AES_ROM_TABLES
#define
MBEDTLS
_AES_ROM_TABLES
/* Save RAM by adjusting to our exact needs */
#define
POLARSSL
_ECP_MAX_BITS 384
#define
POLARSSL
_MPI_MAX_SIZE 48 // 384 bits is 48 bytes
#define
MBEDTLS
_ECP_MAX_BITS 384
#define
MBEDTLS
_MPI_MAX_SIZE 48 // 384 bits is 48 bytes
/* Save RAM at the expense of speed, see ecp.h */
#define
POLARSSL
_ECP_WINDOW_SIZE 2
#define
POLARSSL
_ECP_FIXED_POINT_OPTIM 0
#define
MBEDTLS
_ECP_WINDOW_SIZE 2
#define
MBEDTLS
_ECP_FIXED_POINT_OPTIM 0
/* Significant speed benefit at the expense of some ROM */
#define
POLARSSL
_ECP_NIST_OPTIM
#define
MBEDTLS
_ECP_NIST_OPTIM
/*
* You should adjust this to the exact number of sources you're using: default
* is the "platform_entropy_poll" source, but you may want to add other ones.
* Minimum is 2 for the entropy test suite.
*/
#define ENTROPY_MAX_SOURCES 2
#define
MBEDTLS_
ENTROPY_MAX_SOURCES 2
/* Save ROM and a few bytes of RAM by specifying our own ciphersuite list */
#define SSL_CIPHERSUITES \
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, \
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
#define
MBEDTLS_
SSL_CIPHERSUITES \
MBEDTLS_
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, \
MBEDTLS_
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
/*
* Save RAM at the expense of interoperability: do this only if you control
...
...
@@ -88,8 +88,8 @@
* The minimum size here depends on the certificate chain used as well as the
* typical size of records.
*/
#define SSL_MAX_CONTENT_LEN 1024
#define
MBEDTLS_
SSL_MAX_CONTENT_LEN 1024
#include "mbedtls/check_config.h"
#endif
/*
POLARSSL
_CONFIG_H */
#endif
/*
MBEDTLS
_CONFIG_H */
include/mbedtls/aes.h
View file @
2cf5a7c9
...
...
@@ -21,13 +21,13 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef
POLARSSL
_AES_H
#define
POLARSSL
_AES_H
#ifndef
MBEDTLS
_AES_H
#define
MBEDTLS
_AES_H
#if !defined(
POLARSSL
_CONFIG_FILE)
#if !defined(
MBEDTLS
_CONFIG_FILE)
#include "config.h"
#else
#include
POLARSSL
_CONFIG_FILE
#include
MBEDTLS
_CONFIG_FILE
#endif
#include <stddef.h>
...
...
@@ -40,13 +40,13 @@ typedef UINT32 uint32_t;
#endif
/* padlock.c and aesni.c rely on these values! */
#define AES_ENCRYPT 1
#define AES_DECRYPT 0
#define
MBEDTLS_
AES_ENCRYPT 1
#define
MBEDTLS_
AES_DECRYPT 0
#define
POLARSSL
_ERR_AES_INVALID_KEY_LENGTH -0x0020
/**< Invalid key length. */
#define
POLARSSL
_ERR_AES_INVALID_INPUT_LENGTH -0x0022
/**< Invalid data input length. */
#define
MBEDTLS
_ERR_AES_INVALID_KEY_LENGTH -0x0020
/**< Invalid key length. */
#define
MBEDTLS
_ERR_AES_INVALID_INPUT_LENGTH -0x0022
/**< Invalid data input length. */
#if !defined(
POLARSSL
_AES_ALT)
#if !defined(
MBEDTLS
_AES_ALT)
// Regular implementation
//
...
...
@@ -68,21 +68,21 @@ typedef struct
uint32_t
*
rk
;
/*!< AES round keys */
uint32_t
buf
[
68
];
/*!< unaligned data */
}
aes_context
;
mbedtls_
aes_context
;
/**
* \brief Initialize AES context
*
* \param ctx AES context to be initialized
*/
void
aes_init
(
aes_context
*
ctx
);
void
mbedtls_
aes_init
(
mbedtls_
aes_context
*
ctx
);
/**
* \brief Clear AES context
*
* \param ctx AES context to be cleared
*/
void
aes_free
(
aes_context
*
ctx
);
void
mbedtls_
aes_free
(
mbedtls_
aes_context
*
ctx
);
/**
* \brief AES key schedule (encryption)
...
...
@@ -91,9 +91,9 @@ void aes_free( aes_context *ctx );
* \param key encryption key
* \param keysize must be 128, 192 or 256
*
* \return 0 if successful, or
POLARSSL
_ERR_AES_INVALID_KEY_LENGTH
* \return 0 if successful, or
MBEDTLS
_ERR_AES_INVALID_KEY_LENGTH
*/
int
aes_setkey_enc
(
aes_context
*
ctx
,
const
unsigned
char
*
key
,
int
mbedtls_
aes_setkey_enc
(
mbedtls_
aes_context
*
ctx
,
const
unsigned
char
*
key
,
unsigned
int
keysize
);
/**
...
...
@@ -103,27 +103,27 @@ int aes_setkey_enc( aes_context *ctx, const unsigned char *key,
* \param key decryption key
* \param keysize must be 128, 192 or 256
*
* \return 0 if successful, or
POLARSSL
_ERR_AES_INVALID_KEY_LENGTH
* \return 0 if successful, or
MBEDTLS
_ERR_AES_INVALID_KEY_LENGTH
*/
int
aes_setkey_dec
(
aes_context
*
ctx
,
const
unsigned
char
*
key
,
int
mbedtls_
aes_setkey_dec
(
mbedtls_
aes_context
*
ctx
,
const
unsigned
char
*
key
,
unsigned
int
keysize
);
/**
* \brief AES-ECB block encryption/decryption
*
* \param ctx AES context
* \param mode AES_ENCRYPT or AES_DECRYPT
* \param mode
MBEDTLS_
AES_ENCRYPT or
MBEDTLS_
AES_DECRYPT
* \param input 16-byte input block
* \param output 16-byte output block
*
* \return 0 if successful
*/
int
aes_crypt_ecb
(
aes_context
*
ctx
,
int
mbedtls_
aes_crypt_ecb
(
mbedtls_
aes_context
*
ctx
,
int
mode
,
const
unsigned
char
input
[
16
],
unsigned
char
output
[
16
]
);
#if defined(
POLARSSL
_CIPHER_MODE_CBC)
#if defined(
MBEDTLS
_CIPHER_MODE_CBC)
/**
* \brief AES-CBC buffer encryption/decryption
* Length should be a multiple of the block
...
...
@@ -138,29 +138,29 @@ int aes_crypt_ecb( aes_context *ctx,
* module instead.
*
* \param ctx AES context
* \param mode AES_ENCRYPT or AES_DECRYPT
* \param mode
MBEDTLS_
AES_ENCRYPT or
MBEDTLS_
AES_DECRYPT
* \param length length of the input data
* \param iv initialization vector (updated after use)
* \param input buffer holding the input data
* \param output buffer holding the output data
*
* \return 0 if successful, or
POLARSSL
_ERR_AES_INVALID_INPUT_LENGTH
* \return 0 if successful, or
MBEDTLS
_ERR_AES_INVALID_INPUT_LENGTH
*/
int
aes_crypt_cbc
(
aes_context
*
ctx
,
int
mbedtls_
aes_crypt_cbc
(
mbedtls_
aes_context
*
ctx
,
int
mode
,
size_t
length
,
unsigned
char
iv
[
16
],
const
unsigned
char
*
input
,
unsigned
char
*
output
);
#endif
/*
POLARSSL
_CIPHER_MODE_CBC */
#endif
/*
MBEDTLS
_CIPHER_MODE_CBC */
#if defined(
POLARSSL
_CIPHER_MODE_CFB)
#if defined(
MBEDTLS
_CIPHER_MODE_CFB)
/**
* \brief AES-CFB128 buffer encryption/decryption.
*
* Note: Due to the nature of CFB you should use the same key schedule for
* both encryption and decryption. So a context initialized with
* aes_setkey_enc() for both AES_ENCRYPT and AES_DECRYPT.
*
mbedtls_
aes_setkey_enc() for both
MBEDTLS_
AES_ENCRYPT and
MBEDTLS_
AES_DECRYPT.
*
* \note Upon exit, the content of the IV is updated so that you can
* call the function same function again on the following
...
...
@@ -171,7 +171,7 @@ int aes_crypt_cbc( aes_context *ctx,
* module instead.
*
* \param ctx AES context
* \param mode AES_ENCRYPT or AES_DECRYPT
* \param mode
MBEDTLS_
AES_ENCRYPT or
MBEDTLS_
AES_DECRYPT
* \param length length of the input data
* \param iv_off offset in IV (updated after use)
* \param iv initialization vector (updated after use)
...
...
@@ -180,7 +180,7 @@ int aes_crypt_cbc( aes_context *ctx,
*
* \return 0 if successful
*/
int
aes_crypt_cfb128
(
aes_context
*
ctx
,
int
mbedtls_
aes_crypt_cfb128
(
mbedtls_
aes_context
*
ctx
,
int
mode
,
size_t
length
,
size_t
*
iv_off
,
...
...
@@ -193,7 +193,7 @@ int aes_crypt_cfb128( aes_context *ctx,
*
* Note: Due to the nature of CFB you should use the same key schedule for
* both encryption and decryption. So a context initialized with
* aes_setkey_enc() for both AES_ENCRYPT and AES_DECRYPT.
*
mbedtls_
aes_setkey_enc() for both
MBEDTLS_
AES_ENCRYPT and
MBEDTLS_
AES_DECRYPT.
*
* \note Upon exit, the content of the IV is updated so that you can
* call the function same function again on the following
...
...
@@ -204,7 +204,7 @@ int aes_crypt_cfb128( aes_context *ctx,
* module instead.
*
* \param ctx AES context
* \param mode AES_ENCRYPT or AES_DECRYPT
* \param mode
MBEDTLS_
AES_ENCRYPT or
MBEDTLS_
AES_DECRYPT
* \param length length of the input data
* \param iv initialization vector (updated after use)
* \param input buffer holding the input data
...
...
@@ -212,15 +212,15 @@ int aes_crypt_cfb128( aes_context *ctx,
*
* \return 0 if successful
*/
int
aes_crypt_cfb8
(
aes_context
*
ctx
,
int
mbedtls_
aes_crypt_cfb8
(
mbedtls_
aes_context
*
ctx
,
int
mode
,
size_t
length
,
unsigned
char
iv
[
16
],
const
unsigned
char
*
input
,
unsigned
char
*
output
);
#endif
/*
POLARSSL
_CIPHER_MODE_CFB */
#endif
/*
MBEDTLS
_CIPHER_MODE_CFB */
#if defined(
POLARSSL
_CIPHER_MODE_CTR)
#if defined(
MBEDTLS
_CIPHER_MODE_CTR)
/**
* \brief AES-CTR buffer encryption/decryption
*
...
...
@@ -228,7 +228,7 @@ int aes_crypt_cfb8( aes_context *ctx,
*
* Note: Due to the nature of CTR you should use the same key schedule for
* both encryption and decryption. So a context initialized with
* aes_setkey_enc() for both AES_ENCRYPT and AES_DECRYPT.
*
mbedtls_
aes_setkey_enc() for both
MBEDTLS_
AES_ENCRYPT and
MBEDTLS_
AES_DECRYPT.
*
* \param ctx AES context
* \param length The length of the data
...
...
@@ -243,22 +243,22 @@ int aes_crypt_cfb8( aes_context *ctx,
*
* \return 0 if successful
*/
int
aes_crypt_ctr
(
aes_context
*
ctx
,
int
mbedtls_
aes_crypt_ctr
(
mbedtls_
aes_context
*
ctx
,
size_t
length
,
size_t
*
nc_off
,
unsigned
char
nonce_counter
[
16
],
unsigned
char
stream_block
[
16
],
const
unsigned
char
*
input
,
unsigned
char
*
output
);
#endif
/*
POLARSSL
_CIPHER_MODE_CTR */
#endif
/*
MBEDTLS
_CIPHER_MODE_CTR */
#ifdef __cplusplus
}
#endif
#else
/*
POLARSSL
_AES_ALT */
#else
/*
MBEDTLS
_AES_ALT */
#include "aes_alt.h"
#endif
/*
POLARSSL
_AES_ALT */
#endif
/*
MBEDTLS
_AES_ALT */