2 digest.c -- Digest handling
3 Copyright (C) 2007-2016 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "../system.h"
22 #include "../xalloc.h"
24 #include <openssl/err.h>
25 #include <openssl/hmac.h>
28 #include "../digest.h"
29 #include "../logger.h"
31 static digest_t *digest_open(const EVP_MD *evp_md, int maclength) {
32 digest_t *digest = xzalloc(sizeof(*digest));
33 digest->digest = evp_md;
35 int digestlen = EVP_MD_size(digest->digest);
37 if(maclength > digestlen || maclength < 0) {
38 digest->maclength = digestlen;
40 digest->maclength = maclength;
46 digest_t *digest_open_by_name(const char *name, int maclength) {
47 const EVP_MD *evp_md = EVP_get_digestbyname(name);
50 logger(DEBUG_ALWAYS, LOG_DEBUG, "Unknown digest name '%s'!", name);
54 return digest_open(evp_md, maclength);
57 digest_t *digest_open_by_nid(int nid, int maclength) {
58 const EVP_MD *evp_md = EVP_get_digestbynid(nid);
61 logger(DEBUG_ALWAYS, LOG_DEBUG, "Unknown digest nid %d!", nid);
65 return digest_open(evp_md, maclength);
68 bool digest_set_key(digest_t *digest, const void *key, size_t len) {
69 #ifdef HAVE_HMAC_CTX_NEW
70 digest->hmac_ctx = HMAC_CTX_new();
71 HMAC_Init_ex(digest->hmac_ctx, key, len, digest->digest, NULL);
73 digest->hmac_ctx = xzalloc(sizeof(*digest->hmac_ctx));
74 HMAC_Init(digest->hmac_ctx, key, len, digest->digest);
77 if(!digest->hmac_ctx) {
84 void digest_close(digest_t *digest) {
90 EVP_MD_CTX_destroy(digest->md_ctx);
93 #ifdef HAVE_HMAC_CTX_NEW
95 if(digest->hmac_ctx) {
96 HMAC_CTX_free(digest->hmac_ctx);
100 free(digest->hmac_ctx);
106 bool digest_create(digest_t *digest, const void *indata, size_t inlen, void *outdata) {
107 size_t len = EVP_MD_size(digest->digest);
108 unsigned char tmpdata[len];
110 if(digest->hmac_ctx) {
111 if(!HMAC_Init_ex(digest->hmac_ctx, NULL, 0, NULL, NULL)
112 || !HMAC_Update(digest->hmac_ctx, indata, inlen)
113 || !HMAC_Final(digest->hmac_ctx, tmpdata, NULL)) {
114 logger(DEBUG_ALWAYS, LOG_DEBUG, "Error creating digest: %s", ERR_error_string(ERR_get_error(), NULL));
118 if(!digest->md_ctx) {
119 digest->md_ctx = EVP_MD_CTX_create();
122 if(!digest->md_ctx) {
126 if(!EVP_DigestInit(digest->md_ctx, digest->digest)
127 || !EVP_DigestUpdate(digest->md_ctx, indata, inlen)
128 || !EVP_DigestFinal(digest->md_ctx, tmpdata, NULL)) {
129 logger(DEBUG_ALWAYS, LOG_DEBUG, "Error creating digest: %s", ERR_error_string(ERR_get_error(), NULL));
134 memcpy(outdata, tmpdata, digest->maclength);
138 bool digest_verify(digest_t *digest, const void *indata, size_t inlen, const void *cmpdata) {
139 size_t len = digest->maclength;
140 unsigned char outdata[len];
142 return digest_create(digest, indata, inlen, outdata) && !memcmp(cmpdata, outdata, digest->maclength);
145 int digest_get_nid(const digest_t *digest) {
146 if(!digest || !digest->digest) {
150 return EVP_MD_type(digest->digest);
153 size_t digest_keylength(const digest_t *digest) {
154 if(!digest || !digest->digest) {
158 return EVP_MD_size(digest->digest);
161 size_t digest_length(const digest_t *digest) {
166 return digest->maclength;
169 bool digest_active(const digest_t *digest) {
170 return digest && digest->digest && EVP_MD_type(digest->digest) != 0;