summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/opencrypto/xform_poly1305.h
blob: 7364ecdef1177d33871314fe2aafab5e5cff69d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This file is in the public domain. */
/* $FreeBSD$ */
#pragma once

#include <sys/types.h>

struct poly1305_xform_ctx;

void Poly1305_Init(struct poly1305_xform_ctx *);

void Poly1305_Setkey(struct poly1305_xform_ctx *,
    const uint8_t [__min_size(32)], size_t);

int Poly1305_Update(struct poly1305_xform_ctx *, const void *, size_t);

void Poly1305_Final(uint8_t [__min_size(16)], struct poly1305_xform_ctx *);