Searched refs:AesContext (Results 1 – 3 of 3) sorted by relevance
/device/google/contexthub/lib/include/nanohub/ |
D | aes.h | 22 struct AesContext { struct 27 struct AesContext tmpCtx; argument 35 void aesInitForEncr(struct AesContext *ctx, const uint32_t *k); 36 void aesInitForDecr(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpace, const uint32_t… 37 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst); //encrypts AES_BLOCK_WORD… 38 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst); //deencrypts AES_BLOCK_WO… 42 struct AesContext aes;
|
/device/google/contexthub/firmware/inc/platform/stm32f4xx/ |
D | bl.h | 30 struct AesContext; 81 void (*blAesInitForEncr)(struct AesContext *ctx, const uint32_t *k); 82 …void (*blAesInitForDecr)(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpac… 83 void (*blAesEncr)(struct AesContext *ctx, const uint32_t *src, uint32_t *dst); 84 void (*blAesDecr)(struct AesContext *ctx, const uint32_t *src, uint32_t *dst);
|
/device/google/contexthub/lib/nanohub/ |
D | aes.c | 155 void aesInitForEncr(struct AesContext *ctx, const uint32_t *k) in aesInitForEncr() 183 void aesInitForDecr(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpace, const uint32_t… in aesInitForDecr() 204 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesEncr() 274 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesDecr()
|