Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
36 lines
830 B
C
36 lines
830 B
C
/*
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _ECB_H_
|
|
#define _ECB_H_
|
|
|
|
typedef void (*ecb_fp) (uint32_t status, uint8_t *cipher_be,
|
|
void *context);
|
|
|
|
struct ecb {
|
|
uint8_t in_key_be[16];
|
|
uint8_t in_clear_text_be[16];
|
|
uint8_t out_cipher_text_be[16];
|
|
/* if not null reverse copy into in_key_be */
|
|
uint8_t *in_key_le;
|
|
/* if not null reverse copy into in_clear_text_be */
|
|
uint8_t *in_clear_text_le;
|
|
ecb_fp fp_ecb;
|
|
void *context;
|
|
};
|
|
|
|
void ecb_encrypt(uint8_t const *const key_le,
|
|
uint8_t const *const clear_text_le,
|
|
uint8_t * const cipher_text_le,
|
|
uint8_t * const cipher_text_be);
|
|
uint32_t ecb_encrypt_nonblocking(struct ecb *ecb);
|
|
void isr_ecb(void *param);
|
|
|
|
uint32_t ecb_ut(void);
|
|
|
|
#endif /* _ECB_H_ */
|