Lines Matching refs:src
204 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesEncr() argument
210 x0 = *src++ ^ *k++; in aesEncr()
211 x1 = *src++ ^ *k++; in aesEncr()
212 x2 = *src++ ^ *k++; in aesEncr()
213 x3 = *src++ ^ *k++; in aesEncr()
274 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesDecr() argument
280 x0 = *src++ ^ *k++; in aesDecr()
281 x1 = *src++ ^ *k++; in aesDecr()
282 x2 = *src++ ^ *k++; in aesDecr()
283 x3 = *src++ ^ *k++; in aesDecr()
358 void aesCbcEncr(struct AesCbcContext *ctx, const uint32_t *src, uint32_t *dst) in aesCbcEncr() argument
363 ctx->iv[i] ^= *src++; in aesCbcEncr()
369 void aesCbcDecr(struct AesCbcContext *ctx, const uint32_t *src, uint32_t *dst) in aesCbcDecr() argument
373 aesDecr(&ctx->aes, src, tmp); in aesCbcDecr()
377 memcpy(ctx->iv, src, sizeof(uint32_t[AES_BLOCK_WORDS])); in aesCbcDecr()