Lines Matching refs:u8
33 u8 consts[];
39 const u8 *inkey, unsigned int keylen) in crypto_xcbc_digest_setkey()
42 u8 *consts = ctx->consts; in crypto_xcbc_digest_setkey()
44 u8 key1[XCBC_BLOCKSIZE]; in crypto_xcbc_digest_setkey()
50 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey()
51 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey()
52 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey()
61 u8 *prev = shash_desc_ctx(pdesc); in crypto_xcbc_digest_init()
67 static int crypto_xcbc_digest_update(struct shash_desc *pdesc, const u8 *p, in crypto_xcbc_digest_update()
74 u8 *prev = shash_desc_ctx(pdesc); in crypto_xcbc_digest_update()
85 static int crypto_xcbc_digest_finup(struct shash_desc *pdesc, const u8 *src, in crypto_xcbc_digest_finup()
86 unsigned int len, u8 *out) in crypto_xcbc_digest_finup()
92 u8 *prev = shash_desc_ctx(pdesc); in crypto_xcbc_digest_finup()