Microchip® Advanced Software Framework

quick_start_callback.c File Reference

AES example for SAM.

Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries.

#include <asf.h>
#include <string.h>

Macros

#define AES_EXAMPLE_REFBUF_SIZE   4
 [cipher_data] More...
 

Functions

static void aes_callback (void)
 The AES interrupt call back function. More...
 
static void cbc_mode_test (void)
 CBC mode encryption and decryption test. More...
 
static void cfb128_mode_test (void)
 CFB128 mode encryption and decryption test. More...
 
static void configure_usart (void)
 [module_var] More...
 
static void ctr_mode_test (void)
 CTR mode encryption and decryption test. More...
 
static void ecb_mode_test (void)
 ECB mode encryption and decryption test. More...
 
int main (void)
 [setup] More...
 
static void ofb_mode_test (void)
 OFB mode encryption and decryption test. More...
 

Variables

struct aes_module aes_instance
 
struct aes_config g_aes_cfg
 AES configuration. More...
 
static uint32_t output_data [AES_EXAMPLE_REFBUF_SIZE]
 [cipher_data] More...
 
volatile bool state = false
 
struct usart_module usart_instance
 
sample data from NIST-800-38A appendix F
uint32_t ref_plain_text [AES_EXAMPLE_REFBUF_SIZE]
 Reference plain data. More...
 
uint32_t ref_cipher_text_ecb [AES_EXAMPLE_REFBUF_SIZE]
 Reference ECB cipher data. More...
 
uint32_t ref_cipher_text_cbc [AES_EXAMPLE_REFBUF_SIZE]
 Reference CBC cipher data. More...
 
uint32_t ref_cipher_text_cfb128 [AES_EXAMPLE_REFBUF_SIZE]
 Reference CFB128 cipher data. More...
 
uint32_t ref_cipher_text_ofb [AES_EXAMPLE_REFBUF_SIZE]
 Reference OFB cipher data. More...
 
uint32_t ref_cipher_text_ctr [AES_EXAMPLE_REFBUF_SIZE]
 Reference CTR cipher data. More...
 
const uint32_t key128 [4]
 Cipher 128 bits key array. More...
 
const uint32_t init_vector [4]
 Init vector array for ECB, CBC, CFB128 and OFB mode. More...
 
const uint32_t init_vector_ctr [4]
 Init vector array for CTR mode. More...
 

#define AES_EXAMPLE_REFBUF_SIZE   4

[cipher_data]

static void aes_callback ( void  )
static

The AES interrupt call back function.

References aes_instance, aes_read_output_data(), output_data, and state.

Referenced by main().

int main ( void  )

[setup]

The main function.

[setup_init]

[setup_config]

[setup_config] [setup_config_defaults]

[setup_config_defaults]

[module_enable]

[module_enable]

[module_enable_register]

[module_enable_register]

[setup_init]

[encryption_decryption] [ECB_MODE]

[ECB_MODE] [CBC_MODE]

[CBC_MODE] [CFB_MODE]

[CFB_MODE] [OFB_MODE]

[OFB_MODE] [CTR_MODE]

[CTR_MODE]

[encryption_decryption]

References aes_callback(), AES_CALLBACK_ENCRYPTION_COMPLETE, aes_enable(), aes_enable_callback(), aes_get_config_defaults(), aes_init(), aes_instance, aes_register_callback(), cbc_mode_test(), cfb128_mode_test(), configure_usart(), ctr_mode_test(), ecb_mode_test(), g_aes_cfg, ofb_mode_test(), and system_init().

const uint32_t init_vector[4]
Initial value:
= {
0x03020100,
0x07060504,
0x0b0a0908,
0x0f0e0d0c
}

Init vector array for ECB, CBC, CFB128 and OFB mode.

Referenced by cbc_mode_test(), cfb128_mode_test(), ofb_mode_test(), run_cbc_mode_test(), run_cfb128_mode_test(), and run_ofb_mode_test().

const uint32_t init_vector_ctr[4]
Initial value:
= {
0xf3f2f1f0,
0xf7f6f5f4,
0xfbfaf9f8,
0xfffefdfc
}

Init vector array for CTR mode.

Referenced by ctr_mode_test(), and run_ctr_mode_test().

const uint32_t key128[4]
uint32_t output_data[AES_EXAMPLE_REFBUF_SIZE]
static
uint32_t ref_cipher_text_cbc[AES_EXAMPLE_REFBUF_SIZE]
Initial value:
= {
0xacab4976,
0x46b21981,
0x9b8ee9ce,
0x7d19e912
}

Reference CBC cipher data.

Referenced by cbc_mode_test(), and run_cbc_mode_test().

uint32_t ref_cipher_text_cfb128[AES_EXAMPLE_REFBUF_SIZE]
Initial value:
= {
0x2ed93f3b,
0x20ad2db7,
0xf8493433,
0x4afb3ce8
}

Reference CFB128 cipher data.

Referenced by cfb128_mode_test(), and run_cfb128_mode_test().

uint32_t ref_cipher_text_ctr[AES_EXAMPLE_REFBUF_SIZE]
Initial value:
= {
0x91614d87,
0x26e320b6,
0x6468ef1b,
0xceb60d99
}

Reference CTR cipher data.

Referenced by ctr_mode_test(), and run_ctr_mode_test().

uint32_t ref_cipher_text_ecb[AES_EXAMPLE_REFBUF_SIZE]
Initial value:
= {
0xb47bd73a,
0x60367a0d,
0xf3ca9ea8,
0x97ef6624
}

Reference ECB cipher data.

Referenced by ecb_mode_test(), ecb_mode_test_dma(), run_ecb_mode_test(), and run_ecb_mode_test_dma().

uint32_t ref_cipher_text_ofb[AES_EXAMPLE_REFBUF_SIZE]
Initial value:
= {
0x2ed93f3b,
0x20ad2db7,
0xf8493433,
0x4afb3ce8
}

Reference OFB cipher data.

Referenced by ofb_mode_test(), and run_ofb_mode_test().

uint32_t ref_plain_text[AES_EXAMPLE_REFBUF_SIZE]
struct usart_module usart_instance