/device/google/contexthub/lib/include/nanohub/ |
aes.h | 22 struct AesContext { 27 struct AesContext tmpCtx; 35 void aesInitForEncr(struct AesContext *ctx, const uint32_t *k); 36 void aesInitForDecr(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpace, const uint32_t *k); 37 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst); //encrypts AES_BLOCK_WORDS words 38 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst); //deencrypts AES_BLOCK_WORDS words 42 struct AesContext aes;
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Cipher/ |
CryptAes.c | 40 This function initializes user-supplied memory pointed by AesContext as AES context.
45 If AesContext is NULL, then return FALSE.
49 @param[out] AesContext Pointer to AES context being initialized.
60 OUT VOID *AesContext,
70 if (AesContext == NULL || Key == NULL || (KeyLength != 128 && KeyLength != 192 && KeyLength != 256)) {
77 AesKey = (AES_KEY *) AesContext;
94 AesContext should be already correctly initialized by AesInit(). Behavior with
97 If AesContext is NULL, then return FALSE.
102 @param[in] AesContext Pointer to the AES context.
114 IN VOID *AesContext,
[all...] |
CryptAesNull.c | 40 @param[out] AesContext Pointer to AES context being initialized.
50 OUT VOID *AesContext,
64 @param[in] AesContext Pointer to the AES context.
75 IN VOID *AesContext,
90 @param[in] AesContext Pointer to the AES context.
101 IN VOID *AesContext,
116 @param[in] AesContext Pointer to the AES context.
128 IN VOID *AesContext,
144 @param[in] AesContext Pointer to the AES context.
156 IN VOID *AesContext,
[all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Cipher/ |
CryptAesNull.c | 40 @param[out] AesContext Pointer to AES context being initialized.
50 OUT VOID *AesContext,
64 @param[in] AesContext Pointer to the AES context.
75 IN VOID *AesContext,
90 @param[in] AesContext Pointer to the AES context.
101 IN VOID *AesContext,
116 @param[in] AesContext Pointer to the AES context.
128 IN VOID *AesContext,
144 @param[in] AesContext Pointer to the AES context.
156 IN VOID *AesContext,
[all...] |
/device/google/contexthub/firmware/os/inc/ |
bl.h | 41 struct AesContext; 66 void (*blAesInitForEncr)(struct AesContext *ctx, const uint32_t *k); 67 void (*blAesInitForDecr)(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpace, const uint32_t *k); 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);
|
/external/pdfium/core/fdrm/crypto/ |
fx_crypt_aes.cpp | 28 struct AESContext { 31 void (*encrypt)(AESContext* ctx, unsigned int* block); 32 void (*decrypt)(AESContext* ctx, unsigned int* block); 464 static void aes_encrypt_nb_4(AESContext* ctx, unsigned int* block) { [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Include/Library/ |
BaseCryptLib.h | [all...] |
/device/google/contexthub/lib/nanohub/ |
aes.c | 155 void aesInitForEncr(struct AesContext *ctx, const uint32_t *k) 183 void aesInitForDecr(struct AesContext *ctx, struct AesSetupTempWorksSpace *tmpSpace, const uint32_t *k) 204 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) 274 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst)
|