25#if !defined(MBEDTLS_CONFIG_FILE)
28#include MBEDTLS_CONFIG_FILE
41#define MBEDTLS_XTEA_ENCRYPT 1
42#define MBEDTLS_XTEA_DECRYPT 0
44#define MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH -0x0028
47#define MBEDTLS_ERR_XTEA_HW_ACCEL_FAILED -0x0029
53#if !defined(MBEDTLS_XTEA_ALT)
104 const unsigned char input[8],
105 unsigned char output[8] );
107#if defined(MBEDTLS_CIPHER_MODE_CBC)
125 const unsigned char *input,
126 unsigned char *output);
129#if defined(MBEDTLS_SELF_TEST)
136int mbedtls_xtea_self_test(
int verbose );
Configuration options (set of defines)
void mbedtls_xtea_setup(mbedtls_xtea_context *ctx, const unsigned char key[16])
XTEA key schedule.
void mbedtls_xtea_free(mbedtls_xtea_context *ctx)
Clear XTEA context.
int mbedtls_xtea_crypt_ecb(mbedtls_xtea_context *ctx, int mode, const unsigned char input[8], unsigned char output[8])
XTEA cipher function.
void mbedtls_xtea_init(mbedtls_xtea_context *ctx)
Initialize XTEA context.