/src/openssl/crypto/siphash/siphash_ameth.c
Line | Count | Source (jump to first uncovered line) |
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/siphash.h" |
15 | | #include "siphash_local.h" |
16 | | #include "internal/evp_int.h" |
17 | | |
18 | | /* |
19 | | * SIPHASH "ASN1" method. This is just here to indicate the maximum |
20 | | * SIPHASH output length and to free up a SIPHASH key. |
21 | | */ |
22 | | |
23 | | static int siphash_size(const EVP_PKEY *pkey) |
24 | 0 | { |
25 | 0 | return SIPHASH_MAX_DIGEST_SIZE; |
26 | 0 | } |
27 | | |
28 | | static void siphash_key_free(EVP_PKEY *pkey) |
29 | 0 | { |
30 | 0 | ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); |
31 | 0 |
|
32 | 0 | if (os != NULL) { |
33 | 0 | if (os->data != NULL) |
34 | 0 | OPENSSL_cleanse(os->data, os->length); |
35 | 0 | ASN1_OCTET_STRING_free(os); |
36 | 0 | } |
37 | 0 | } |
38 | | |
39 | | static int siphash_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) |
40 | 0 | { |
41 | 0 | /* nothing (including ASN1_PKEY_CTRL_DEFAULT_MD_NID), is supported */ |
42 | 0 | return -2; |
43 | 0 | } |
44 | | |
45 | | static int siphash_pkey_public_cmp(const EVP_PKEY *a, const EVP_PKEY *b) |
46 | 0 | { |
47 | 0 | return ASN1_OCTET_STRING_cmp(EVP_PKEY_get0(a), EVP_PKEY_get0(b)); |
48 | 0 | } |
49 | | |
50 | | static int siphash_set_priv_key(EVP_PKEY *pkey, const unsigned char *priv, |
51 | | size_t len) |
52 | 0 | { |
53 | 0 | ASN1_OCTET_STRING *os; |
54 | 0 |
|
55 | 0 | if (pkey->pkey.ptr != NULL || len != SIPHASH_KEY_SIZE) |
56 | 0 | return 0; |
57 | 0 | |
58 | 0 | os = ASN1_OCTET_STRING_new(); |
59 | 0 | if (os == NULL) |
60 | 0 | return 0; |
61 | 0 | |
62 | 0 | if (!ASN1_OCTET_STRING_set(os, priv, len)) { |
63 | 0 | ASN1_OCTET_STRING_free(os); |
64 | 0 | return 0; |
65 | 0 | } |
66 | 0 | |
67 | 0 | pkey->pkey.ptr = os; |
68 | 0 | return 1; |
69 | 0 | } |
70 | | |
71 | | static int siphash_get_priv_key(const EVP_PKEY *pkey, unsigned char *priv, |
72 | | size_t *len) |
73 | 0 | { |
74 | 0 | ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; |
75 | 0 |
|
76 | 0 | if (priv == NULL) { |
77 | 0 | *len = SIPHASH_KEY_SIZE; |
78 | 0 | return 1; |
79 | 0 | } |
80 | 0 |
|
81 | 0 | if (os == NULL || *len < SIPHASH_KEY_SIZE) |
82 | 0 | return 0; |
83 | 0 | |
84 | 0 | memcpy(priv, ASN1_STRING_get0_data(os), ASN1_STRING_length(os)); |
85 | 0 | *len = SIPHASH_KEY_SIZE; |
86 | 0 |
|
87 | 0 | return 1; |
88 | 0 | } |
89 | | |
90 | | const EVP_PKEY_ASN1_METHOD siphash_asn1_meth = { |
91 | | EVP_PKEY_SIPHASH, |
92 | | EVP_PKEY_SIPHASH, |
93 | | 0, |
94 | | |
95 | | "SIPHASH", |
96 | | "OpenSSL SIPHASH method", |
97 | | |
98 | | 0, 0, siphash_pkey_public_cmp, 0, |
99 | | |
100 | | 0, 0, 0, |
101 | | |
102 | | siphash_size, |
103 | | 0, 0, |
104 | | 0, 0, 0, 0, 0, 0, 0, |
105 | | |
106 | | siphash_key_free, |
107 | | siphash_pkey_ctrl, |
108 | | NULL, |
109 | | NULL, |
110 | | |
111 | | NULL, |
112 | | NULL, |
113 | | NULL, |
114 | | |
115 | | NULL, |
116 | | NULL, |
117 | | NULL, |
118 | | |
119 | | siphash_set_priv_key, |
120 | | NULL, |
121 | | siphash_get_priv_key, |
122 | | NULL, |
123 | | }; |