Home
last modified time | relevance | path

Searched refs:bootutil_aes_ctr_context (Results 1 – 3 of 3) sorted by relevance

/mcuboot-latest/boot/bootutil/include/bootutil/crypto/
Daes_ctr.h48 typedef mbedtls_aes_context bootutil_aes_ctr_context; typedef
49 static inline void bootutil_aes_ctr_init(bootutil_aes_ctr_context *ctx) in bootutil_aes_ctr_init()
54 static inline void bootutil_aes_ctr_drop(bootutil_aes_ctr_context *ctx) in bootutil_aes_ctr_drop()
59 static inline int bootutil_aes_ctr_set_key(bootutil_aes_ctr_context *ctx, const uint8_t *k) in bootutil_aes_ctr_set_key()
64 static inline int bootutil_aes_ctr_encrypt(bootutil_aes_ctr_context *ctx, uint8_t *counter, const u… in bootutil_aes_ctr_encrypt()
70 static inline int bootutil_aes_ctr_decrypt(bootutil_aes_ctr_context *ctx, uint8_t *counter, const u… in bootutil_aes_ctr_decrypt()
78 typedef struct tc_aes_key_sched_struct bootutil_aes_ctr_context; typedef
79 static inline void bootutil_aes_ctr_init(bootutil_aes_ctr_context *ctx) in bootutil_aes_ctr_init()
84 static inline void bootutil_aes_ctr_drop(bootutil_aes_ctr_context *ctx) in bootutil_aes_ctr_drop()
89 static inline int bootutil_aes_ctr_set_key(bootutil_aes_ctr_context *ctx, const uint8_t *k) in bootutil_aes_ctr_set_key()
[all …]
/mcuboot-latest/boot/bootutil/include/bootutil/
Denc_key.h46 bootutil_aes_ctr_context aes_ctr;
/mcuboot-latest/boot/bootutil/src/
Dencrypted.c449 bootutil_aes_ctr_context aes_ctr; in boot_decrypt_key()