Home
last modified time | relevance | path

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

/device/google/contexthub/lib/include/nanohub/
Daes.h22 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/os/inc/
Dbl.h41 struct AesContext;
66 void (*blAesInitForEncr)(struct AesContext *ctx, const uint32_t *k);
67 …void (*blAesInitForDecr)(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpac…
68 void (*blAesEncr)(struct AesContext *ctx, const uint32_t *src, uint32_t *dst);
69 void (*blAesDecr)(struct AesContext *ctx, const uint32_t *src, uint32_t *dst);
/device/google/contexthub/lib/nanohub/
Daes.c155 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()