tinc/src/openssl/digest.c

142 lines
3.7 KiB
C
Raw Normal View History

2019-08-26 11:44:49 +00:00
/*
digest.c -- Digest handling
2019-08-26 11:44:52 +00:00
Copyright (C) 2007-2016 Guus Sliepen <guus@tinc-vpn.org>
2019-08-26 11:44:49 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2019-08-26 11:44:51 +00:00
#include "../system.h"
#include "../utils.h"
#include "../xalloc.h"
2019-08-26 11:44:49 +00:00
#include <openssl/err.h>
#include <openssl/hmac.h>
#include "digest.h"
2019-08-26 11:44:51 +00:00
#include "../digest.h"
#include "../logger.h"
static digest_t *digest_open(const EVP_MD *evp_md, int maclength) {
digest_t *digest = xzalloc(sizeof *digest);
digest->digest = evp_md;
2019-08-26 11:44:49 +00:00
int digestlen = EVP_MD_size(digest->digest);
if(maclength > digestlen || maclength < 0)
digest->maclength = digestlen;
else
digest->maclength = maclength;
2019-08-26 11:44:51 +00:00
return digest;
2019-08-26 11:44:49 +00:00
}
2019-08-26 11:44:51 +00:00
digest_t *digest_open_by_name(const char *name, int maclength) {
const EVP_MD *evp_md = EVP_get_digestbyname(name);
2019-08-26 11:44:49 +00:00
2019-08-26 11:44:51 +00:00
if(!evp_md) {
2019-08-26 11:44:49 +00:00
logger(DEBUG_ALWAYS, LOG_DEBUG, "Unknown digest name '%s'!", name);
2019-08-26 11:44:49 +00:00
return false;
}
2019-08-26 11:44:51 +00:00
return digest_open(evp_md, maclength);
2019-08-26 11:44:49 +00:00
}
2019-08-26 11:44:51 +00:00
digest_t *digest_open_by_nid(int nid, int maclength) {
const EVP_MD *evp_md = EVP_get_digestbynid(nid);
2019-08-26 11:44:49 +00:00
2019-08-26 11:44:51 +00:00
if(!evp_md) {
2019-08-26 11:44:49 +00:00
logger(DEBUG_ALWAYS, LOG_DEBUG, "Unknown digest nid %d!", nid);
2019-08-26 11:44:49 +00:00
return false;
}
2019-08-26 11:44:51 +00:00
return digest_open(evp_md, maclength);
2019-08-26 11:44:49 +00:00
}
bool digest_set_key(digest_t *digest, const void *key, size_t len) {
digest->key = xrealloc(digest->key, len);
memcpy(digest->key, key, len);
digest->keylength = len;
return true;
}
void digest_close(digest_t *digest) {
2019-08-26 11:44:51 +00:00
if(!digest)
return;
2019-08-26 11:44:49 +00:00
free(digest->key);
2019-08-26 11:44:51 +00:00
free(digest);
2019-08-26 11:44:49 +00:00
}
bool digest_create(digest_t *digest, const void *indata, size_t inlen, void *outdata) {
size_t len = EVP_MD_size(digest->digest);
unsigned char tmpdata[len];
if(digest->key) {
2019-08-26 11:44:51 +00:00
if(!HMAC(digest->digest, digest->key, digest->keylength, indata, inlen, tmpdata, NULL)) {
logger(DEBUG_ALWAYS, LOG_DEBUG, "Error creating digest: %s", ERR_error_string(ERR_get_error(), NULL));
return false;
}
2019-08-26 11:44:49 +00:00
} else {
EVP_MD_CTX *ctx = EVP_MD_CTX_create();
if(!ctx)
abort();
2019-08-26 11:44:49 +00:00
if(!EVP_DigestInit(ctx, digest->digest)
|| !EVP_DigestUpdate(ctx, indata, inlen)
|| !EVP_DigestFinal(ctx, tmpdata, NULL)) {
2019-08-26 11:44:49 +00:00
logger(DEBUG_ALWAYS, LOG_DEBUG, "Error creating digest: %s", ERR_error_string(ERR_get_error(), NULL));
EVP_MD_CTX_destroy(ctx);
2019-08-26 11:44:49 +00:00
return false;
}
EVP_MD_CTX_destroy(ctx);
2019-08-26 11:44:49 +00:00
}
memcpy(outdata, tmpdata, digest->maclength);
return true;
}
bool digest_verify(digest_t *digest, const void *indata, size_t inlen, const void *cmpdata) {
size_t len = digest->maclength;
unsigned char outdata[len];
return digest_create(digest, indata, inlen, outdata) && !memcmp(cmpdata, outdata, digest->maclength);
}
int digest_get_nid(const digest_t *digest) {
2019-08-26 11:44:51 +00:00
if(!digest || !digest->digest)
return 0;
return EVP_MD_type(digest->digest);
2019-08-26 11:44:49 +00:00
}
2019-08-26 11:44:49 +00:00
size_t digest_keylength(const digest_t *digest) {
2019-08-26 11:44:51 +00:00
if(!digest || !digest->digest)
return 0;
return EVP_MD_size(digest->digest);
2019-08-26 11:44:49 +00:00
}
2019-08-26 11:44:49 +00:00
size_t digest_length(const digest_t *digest) {
2019-08-26 11:44:51 +00:00
if(!digest)
return 0;
2019-08-26 11:44:49 +00:00
return digest->maclength;
}
bool digest_active(const digest_t *digest) {
return digest && digest->digest && EVP_MD_type(digest->digest) != 0;
2019-08-26 11:44:49 +00:00
}