aboutsummaryrefslogtreecommitdiff
path: root/crypto/poly1305/poly1305_meth.c
blob: 9248d460995aa06edd7b963aa1a2ed50ec384ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
 * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the Apache License 2.0 (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */
#include <openssl/evp.h>
#include "internal/evp_int.h"
#include "internal/poly1305.h"
#include "internal/cryptlib.h"
#include "poly1305_local.h"

/* typedef EVP_MAC_IMPL */
struct evp_mac_impl_st {
    POLY1305 *ctx;               /* poly1305 context */
};

static EVP_MAC_IMPL *poly1305_new(void)
{
    EVP_MAC_IMPL *ctx;

    if ((ctx = OPENSSL_zalloc(sizeof(*ctx))) == NULL
            || (ctx->ctx = OPENSSL_zalloc(sizeof(POLY1305))) == NULL) {
        OPENSSL_free(ctx);
        return 0;
    }
    return ctx;
}

static void poly1305_free(EVP_MAC_IMPL *ctx)
{
    if (ctx != NULL) {
        OPENSSL_free(ctx->ctx);
        OPENSSL_free(ctx);
    }
}

static int poly1305_copy(EVP_MAC_IMPL *dst, EVP_MAC_IMPL *src)
{
    *dst->ctx = *src->ctx;

    return 1;
}

static size_t poly1305_size(EVP_MAC_IMPL *ctx)
{
    return POLY1305_DIGEST_SIZE;
}

static int poly1305_init(EVP_MAC_IMPL *ctx)
{
    /* initialize the context in MAC_ctrl function */
    return 1;
}

static int poly1305_update(EVP_MAC_IMPL *ctx, const unsigned char *data,
                       size_t datalen)
{
    POLY1305 *poly_ctx = ctx->ctx;

    /* poly1305 has nothing to return in its update function */
    Poly1305_Update(poly_ctx, data, datalen);
    return 1;
}

static int poly1305_final(EVP_MAC_IMPL *ctx, unsigned char *out)
{
    POLY1305 *poly_ctx = ctx->ctx;

    Poly1305_Final(poly_ctx, out);
    return 1;
}

static int poly1305_ctrl(EVP_MAC_IMPL *ctx, int cmd, va_list args)
{
    POLY1305 *poly_ctx = ctx->ctx;
    unsigned char *key;
    size_t keylen;

    switch (cmd) {
    case EVP_MAC_CTRL_SET_KEY:
        key = va_arg(args, unsigned char *);
        keylen = va_arg(args, size_t);

        if (keylen != POLY1305_KEY_SIZE) {
            EVPerr(EVP_F_POLY1305_CTRL, EVP_R_INVALID_KEY_LENGTH);
            return 0;
        }
        Poly1305_Init(poly_ctx, key);
        return 1;
    default:
        return -2;
    }
    return 1;
}

static int poly1305_ctrl_int(EVP_MAC_IMPL *ctx, int cmd, ...)
{
    int rv;
    va_list args;

    va_start(args, cmd);
    rv = poly1305_ctrl(ctx, cmd, args);
    va_end(args);

    return rv;
}

static int poly1305_ctrl_str_cb(void *ctx, int cmd, void *buf, size_t buflen)
{
    return poly1305_ctrl_int(ctx, cmd, buf, buflen);
}

static int poly1305_ctrl_str(EVP_MAC_IMPL *ctx,
                             const char *type, const char *value)
{
    if (value == NULL)
        return 0;
    if (strcmp(type, "key") == 0)
        return EVP_str2ctrl(poly1305_ctrl_str_cb, ctx, EVP_MAC_CTRL_SET_KEY,
                            value);
    if (strcmp(type, "hexkey") == 0)
        return EVP_hex2ctrl(poly1305_ctrl_str_cb, ctx, EVP_MAC_CTRL_SET_KEY,
                            value);
    return -2;
}

const EVP_MAC poly1305_meth = {
    EVP_MAC_POLY1305,
    poly1305_new,
    poly1305_copy,
    poly1305_free,
    poly1305_size,
    poly1305_init,
    poly1305_update,
    poly1305_final,
    poly1305_ctrl,
    poly1305_ctrl_str
};