#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aesxcbcmac.c,v 1.4 2026/04/29 14:51:58 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <crypto/aes/aes.h>
#include <opencrypto/aesxcbcmac.h>
int
aes_xcbc_mac_init(void *vctx, const uint8_t *key, uint16_t keylen)
{
static const uint8_t k1seed[AES_BLOCKSIZE] =
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 };
static const uint8_t k2seed[AES_BLOCKSIZE] =
{ 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 };
static const uint8_t k3seed[AES_BLOCKSIZE] =
{ 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3 };
struct aesenc r_ks;
aesxcbc_ctx *ctx;
uint8_t k1[AES_BLOCKSIZE];
ctx = vctx;
memset(ctx, 0, sizeof(*ctx));
switch (keylen) {
case 16:
ctx->r_nr = aes_setenckey128(&r_ks, key);
break;
case 24:
ctx->r_nr = aes_setenckey192(&r_ks, key);
break;
case 32:
ctx->r_nr = aes_setenckey256(&r_ks, key);
break;
}
aes_enc(&r_ks, k1seed, k1, ctx->r_nr);
aes_enc(&r_ks, k2seed, ctx->k2, ctx->r_nr);
aes_enc(&r_ks, k3seed, ctx->k3, ctx->r_nr);
aes_setenckey128(&ctx->r_k1s, k1);
explicit_memset(&r_ks, 0, sizeof(r_ks));
explicit_memset(k1, 0, sizeof(k1));
return 0;
}
int
aes_xcbc_mac_loop(void *vctx, const uint8_t *addr, uint16_t len)
{
uint8_t buf[AES_BLOCKSIZE];
aesxcbc_ctx *ctx;
const uint8_t *ep;
int i;
ctx = vctx;
ep = addr + len;
if (ctx->buflen == sizeof(ctx->buf)) {
for (i = 0; i < sizeof(ctx->e); i++)
ctx->buf[i] ^= ctx->e[i];
aes_enc(&ctx->r_k1s, ctx->buf, ctx->e, ctx->r_nr);
ctx->buflen = 0;
}
if (ctx->buflen + len < sizeof(ctx->buf)) {
memcpy(ctx->buf + ctx->buflen, addr, len);
ctx->buflen += len;
return 0;
}
if (ctx->buflen && ctx->buflen + len > sizeof(ctx->buf)) {
memcpy(ctx->buf + ctx->buflen, addr,
sizeof(ctx->buf) - ctx->buflen);
for (i = 0; i < sizeof(ctx->e); i++)
ctx->buf[i] ^= ctx->e[i];
aes_enc(&ctx->r_k1s, ctx->buf, ctx->e, ctx->r_nr);
addr += sizeof(ctx->buf) - ctx->buflen;
ctx->buflen = 0;
}
while (ep - addr > AES_BLOCKSIZE) {
memcpy(buf, addr, AES_BLOCKSIZE);
for (i = 0; i < sizeof(buf); i++)
buf[i] ^= ctx->e[i];
aes_enc(&ctx->r_k1s, buf, ctx->e, ctx->r_nr);
addr += AES_BLOCKSIZE;
}
if (addr < ep) {
memcpy(ctx->buf + ctx->buflen, addr, ep - addr);
ctx->buflen += ep - addr;
}
return 0;
}
void
aes_xcbc_mac_result(uint8_t *addr, void *vctx)
{
uint8_t digest[AES_BLOCKSIZE];
aesxcbc_ctx *ctx;
int i;
ctx = vctx;
if (ctx->buflen == sizeof(ctx->buf)) {
for (i = 0; i < sizeof(ctx->buf); i++) {
ctx->buf[i] ^= ctx->e[i];
ctx->buf[i] ^= ctx->k2[i];
}
aes_enc(&ctx->r_k1s, ctx->buf, digest, ctx->r_nr);
} else {
for (i = ctx->buflen; i < sizeof(ctx->buf); i++)
ctx->buf[i] = (i == ctx->buflen) ? 0x80 : 0x00;
for (i = 0; i < sizeof(ctx->buf); i++) {
ctx->buf[i] ^= ctx->e[i];
ctx->buf[i] ^= ctx->k3[i];
}
aes_enc(&ctx->r_k1s, ctx->buf, digest, ctx->r_nr);
}
memcpy(addr, digest, sizeof(digest));
}