Update copyright year
[openssl.git] / crypto / poly1305 / poly1305_ameth.c
1 /*
2  * Copyright 2007-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include "internal/cryptlib.h"
12 #include <openssl/evp.h>
13 #include "internal/asn1_int.h"
14 #include "internal/poly1305.h"
15 #include "poly1305_local.h"
16 #include "internal/evp_int.h"
17
18 /*
19  * POLY1305 "ASN1" method. This is just here to indicate the maximum
20  * POLY1305 output length and to free up a POLY1305 key.
21  */
22
23 static int poly1305_size(const EVP_PKEY *pkey)
24 {
25     return POLY1305_DIGEST_SIZE;
26 }
27
28 static void poly1305_key_free(EVP_PKEY *pkey)
29 {
30     ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey);
31     if (os != NULL) {
32         if (os->data != NULL)
33             OPENSSL_cleanse(os->data, os->length);
34         ASN1_OCTET_STRING_free(os);
35     }
36 }
37
38 static int poly1305_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
39 {
40     /* nothing, (including ASN1_PKEY_CTRL_DEFAULT_MD_NID), is supported */
41     return -2;
42 }
43
44 static int poly1305_pkey_public_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
45 {
46     return ASN1_OCTET_STRING_cmp(EVP_PKEY_get0(a), EVP_PKEY_get0(b));
47 }
48
49 static int poly1305_set_priv_key(EVP_PKEY *pkey, const unsigned char *priv,
50                                  size_t len)
51 {
52     ASN1_OCTET_STRING *os;
53
54     if (pkey->pkey.ptr != NULL || len != POLY1305_KEY_SIZE)
55         return 0;
56
57     os = ASN1_OCTET_STRING_new();
58     if (os == NULL)
59         return 0;
60
61     if (!ASN1_OCTET_STRING_set(os, priv, len)) {
62         ASN1_OCTET_STRING_free(os);
63         return 0;
64     }
65
66     pkey->pkey.ptr = os;
67     return 1;
68 }
69
70 const EVP_PKEY_ASN1_METHOD poly1305_asn1_meth = {
71     EVP_PKEY_POLY1305,
72     EVP_PKEY_POLY1305,
73     0,
74
75     "POLY1305",
76     "OpenSSL POLY1305 method",
77
78     0, 0, poly1305_pkey_public_cmp, 0,
79
80     0, 0, 0,
81
82     poly1305_size,
83     0, 0,
84     0, 0, 0, 0, 0, 0, 0,
85
86     poly1305_key_free,
87     poly1305_pkey_ctrl,
88     NULL,
89     NULL,
90
91     NULL,
92     NULL,
93     NULL,
94
95     NULL,
96     NULL,
97     NULL,
98
99     poly1305_set_priv_key,
100     NULL,
101 };