lilcrypto/auth_poly1305.c

175 lines
3.8 KiB
C
Raw Normal View History

2024-05-31 12:59:58 +02:00
/*
* Copyright (c) 2024 Lucas Gabriel Vuotto <lucas@lgv5.net>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdlib.h>
2024-05-31 12:59:58 +02:00
#include "lilcrypto.h"
#include "auth.h"
#include "impl_poly1305.h"
#include "util.h"
static int
poly1305_init(void *arg, const void *initparams)
2024-05-31 12:59:58 +02:00
{
const struct lc_poly1305_params *params = initparams;
struct poly1305_ctx *ctx = arg;
size_t i;
uint32_t t0, t1, t2, t3;
2024-05-31 12:59:58 +02:00
ctx->h0 = 0;
ctx->h1 = 0;
ctx->h2 = 0;
ctx->h3 = 0;
ctx->h4 = 0;
t0 = load32le(&params->key[0]);
t1 = load32le(&params->key[4]);
t2 = load32le(&params->key[8]);
t3 = load32le(&params->key[12]);
2024-05-31 12:59:58 +02:00
ctx->r0 = t0 & 0x3ffffff;
ctx->r1 = ((t1 << 6) | (t0 >> 26)) & 0x3ffff03;
ctx->r2 = ((t2 << 12) | (t1 >> 20)) & 0x3ffc0ff;
ctx->r3 = ((t3 << 18) | (t2 >> 14)) & 0x3f03fff;
ctx->r4 = (t3 >> 8) & 0xfffff;
ctx->x1 = 5 * ctx->r1;
ctx->x2 = 5 * ctx->r2;
ctx->x3 = 5 * ctx->r3;
ctx->x4 = 5 * ctx->r4;
ctx->s0 = load32le(&params->key[16]);
ctx->s1 = load32le(&params->key[20]);
ctx->s2 = load32le(&params->key[24]);
ctx->s3 = load32le(&params->key[28]);
2024-05-31 12:59:58 +02:00
ctx->mlen = 0;
2024-06-09 16:05:52 +02:00
for (i = 0; i < POLY1305_BLOCKLEN; i++)
2024-05-31 12:59:58 +02:00
ctx->m[i] = 0;
return 1;
}
static int
2024-05-31 12:59:58 +02:00
poly1305_update(void *arg, const uint8_t *in, size_t inlen)
{
struct poly1305_ctx *ctx = arg;
size_t i;
2024-06-09 16:05:52 +02:00
for (i = 0; i + ctx->mlen < POLY1305_BLOCKLEN && i < inlen; i++)
2024-05-31 12:59:58 +02:00
ctx->m[i + ctx->mlen] = in[i];
ctx->mlen += i;
in += i;
inlen -= i;
2024-06-09 16:05:52 +02:00
if (ctx->mlen == POLY1305_BLOCKLEN) {
2024-05-31 12:59:58 +02:00
poly1305_block(ctx, 1);
ctx->mlen = 0;
}
if (inlen == 0)
return 1;
2024-06-09 16:05:52 +02:00
while (inlen >= POLY1305_BLOCKLEN) {
for (i = 0; i < POLY1305_BLOCKLEN; i++)
2024-05-31 12:59:58 +02:00
ctx->m[i] = in[i];
poly1305_block(ctx, 1);
2024-06-09 16:05:52 +02:00
in += POLY1305_BLOCKLEN;
inlen -= POLY1305_BLOCKLEN;
2024-05-31 12:59:58 +02:00
}
for (i = 0; i < inlen; i++)
ctx->m[i] = in[i];
ctx->mlen = inlen;
return 1;
}
static int
2024-05-31 12:59:58 +02:00
poly1305_final(void *arg, uint8_t *out, size_t *outlen)
{
struct poly1305_ctx *ctx = arg;
uint32_t tag[POLY1305_TAGLEN_WORDS];
size_t i;
*outlen = LC_POLY1305_TAGLEN;
if (out == NULL)
return 1;
i = ctx->mlen;
if (i > 0) {
2024-06-09 16:05:52 +02:00
if (i < POLY1305_BLOCKLEN) {
2024-05-31 12:59:58 +02:00
ctx->m[i++] = 1;
2024-06-09 16:05:52 +02:00
for (; i < POLY1305_BLOCKLEN; i++)
2024-05-31 12:59:58 +02:00
ctx->m[i] = 0;
poly1305_block(ctx, 0);
} else
poly1305_block(ctx, 1);
}
poly1305_reduce(ctx, tag);
store32le(&out[0], tag[0]);
store32le(&out[4], tag[1]);
store32le(&out[8], tag[2]);
store32le(&out[12], tag[3]);
lc_scrub(ctx, sizeof(*ctx));
return 1;
}
static int
poly1305_auth(uint8_t *out, size_t *outlen, const void *initparams,
2024-05-31 12:59:58 +02:00
const uint8_t *in, size_t inlen)
{
struct poly1305_ctx ctx;
if (out == NULL) {
*outlen = LC_POLY1305_TAGLEN;
return 1;
}
return poly1305_init(&ctx, initparams) &&
2024-05-31 12:59:58 +02:00
poly1305_update(&ctx, in, inlen) &&
poly1305_final(&ctx, out, outlen);
}
static void *
poly1305_ctx_new(void)
{
return malloc(sizeof(struct poly1305_ctx));
}
2024-05-31 12:59:58 +02:00
2024-05-31 12:59:58 +02:00
static struct lc_auth_impl poly1305_impl = {
.init = &poly1305_init,
.update = &poly1305_update,
.final = &poly1305_final,
.auth = &poly1305_auth,
.ctx_new = &poly1305_ctx_new,
.ctx_free = NULL,
2024-05-31 12:59:58 +02:00
};
const struct lc_auth_impl *
lc_auth_impl_poly1305(void)
{
return &poly1305_impl;
}