Documentation

Documentation

Includes

config.h

#include "config.h"
#include "config.h"

MBEDTLS_CONFIG_FILE

#include MBEDTLS_CONFIG_FILE
#include MBEDTLS_CONFIG_FILE

aes.h

#include "aes.h"
#include "aes.h"

stdint.h

#include <stdint.h>
#include 

Macros

Marco MBEDTLS_PADLOCK_H

#define MBEDTLS_PADLOCK_H


      

Marco MBEDTLS_ERR_PADLOCK_DATA_MISALIGNED

#define MBEDTLS_ERR_PADLOCK_DATA_MISALIGNED              -48 /**< Input data should be aligned. */


      

Marco MBEDTLS_HAVE_ASAN

#define MBEDTLS_HAVE_ASAN


      

Marco MBEDTLS_HAVE_X86

#define MBEDTLS_HAVE_X86


      

Marco MBEDTLS_PADLOCK_RNG

#define MBEDTLS_PADLOCK_RNG 0C


      

Marco MBEDTLS_PADLOCK_ACE

#define MBEDTLS_PADLOCK_ACE 0C0


      

Marco MBEDTLS_PADLOCK_PHE

#define MBEDTLS_PADLOCK_PHE 0C00


      

Marco MBEDTLS_PADLOCK_PMM

#define MBEDTLS_PADLOCK_PMM 12288


      

Marco MBEDTLS_PADLOCK_ALIGN16(x)

#define MBEDTLS_PADLOCK_ALIGN16(x) (uint32_t *) (16 + ((int32_t) (x) & ~15))

      

Functions

Func mbedtls_padlock_has_support

int mbedtls_padlock_has_support( int feature );
/**
 * \brief          Internal PadLock detection routine
 *
 * \note           This function is only for internal use by other library
 *                 functions; you must not call it directly.
 *
 * \param feature  The feature to detect
 *
 * \return         1 if CPU has support for the feature, 0 otherwise
 */

Func mbedtls_padlock_xcryptecb

int mbedtls_padlock_xcryptecb( mbedtls_aes_context *ctx,
                              int mode,
                              const unsigned char input[16],
                              unsigned char output[16] );
/**
 * \brief          Internal PadLock AES-ECB block en(de)cryption
 *
 * \note           This function is only for internal use by other library
 *                 functions; you must not call it directly.
 *
 * \param ctx      AES context
 * \param mode     MBEDTLS_AES_ENCRYPT or MBEDTLS_AES_DECRYPT
 * \param input    16-byte input block
 * \param output   16-byte output block
 *
 * \return         0 if success, 1 if operation failed
 */

Func mbedtls_padlock_xcryptcbc

int mbedtls_padlock_xcryptcbc( mbedtls_aes_context *ctx,
                              int mode,
                              size_t length,
                              unsigned char iv[16],
                              const unsigned char *input,
                              unsigned char *output );
/**
 * \brief          Internal PadLock AES-CBC buffer en(de)cryption
 *
 * \note           This function is only for internal use by other library
 *                 functions; you must not call it directly.
 *
 * \param ctx      AES context
 * \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 success, 1 if operation failed
 */

Vars

Consts

Types

Typedefs