Stop using unimplemented cipher classes.
[openssl.git] / crypto / poly1305 / poly1305_ameth.c
1 /*
2  * Copyright 2007-2017 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
17 /*
18  * POLY1305 "ASN1" method. This is just here to indicate the maximum
19  * POLY1305 output length and to free up a POLY1305 key.
20  */
21
22 static int poly1305_size(const EVP_PKEY *pkey)
23 {
24     return POLY1305_DIGEST_SIZE;
25 }
26
27 static void poly1305_key_free(EVP_PKEY *pkey)
28 {
29     ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey);
30     if (os != NULL) {
31         if (os->data != NULL)
32             OPENSSL_cleanse(os->data, os->length);
33         ASN1_OCTET_STRING_free(os);
34     }
35 }
36
37 static int poly1305_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
38 {
39     /* nothing, (including ASN1_PKEY_CTRL_DEFAULT_MD_NID), is supported */
40     return -2;
41 }
42
43 static int poly1305_pkey_public_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
44 {
45     return ASN1_OCTET_STRING_cmp(EVP_PKEY_get0(a), EVP_PKEY_get0(b));
46 }
47
48 const EVP_PKEY_ASN1_METHOD poly1305_asn1_meth = {
49     EVP_PKEY_POLY1305,
50     EVP_PKEY_POLY1305,
51     0,
52
53     "POLY1305",
54     "OpenSSL POLY1305 method",
55
56     0, 0, poly1305_pkey_public_cmp, 0,
57
58     0, 0, 0,
59
60     poly1305_size,
61     0, 0,
62     0, 0, 0, 0, 0, 0, 0,
63
64     poly1305_key_free,
65     poly1305_pkey_ctrl,
66     0, 0
67 };