summaryrefslogtreecommitdiffstats
path: root/src/utils/common/cert.c
blob: 1b76b23df500b6e15c55791ca94db2a72e9231a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*  Copyright (C) 2016 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>

    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 3 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, see <https://www.gnu.org/licenses/>.
 */

#include <gnutls/abstract.h>
#include <gnutls/crypto.h>

#include "utils/common/cert.h"
#include "libknot/error.h"

static int spki_hash(gnutls_x509_crt_t cert, gnutls_digest_algorithm_t alg,
                     uint8_t *hash, size_t size)
{
	if (!cert || !hash || gnutls_hash_get_len(alg) != size) {
		return KNOT_EINVAL;
	}

	gnutls_pubkey_t key = { 0 };
	if (gnutls_pubkey_init(&key) != GNUTLS_E_SUCCESS) {
		return KNOT_ENOMEM;
	}

	if (gnutls_pubkey_import_x509(key, cert, 0) != GNUTLS_E_SUCCESS) {
		gnutls_pubkey_deinit(key);
		return KNOT_ERROR;
	}

	gnutls_datum_t der = { 0 };
	if (gnutls_pubkey_export2(key, GNUTLS_X509_FMT_DER, &der) != GNUTLS_E_SUCCESS) {
		gnutls_pubkey_deinit(key);
		return KNOT_ERROR;
	}

	int ret = gnutls_hash_fast(alg, der.data, der.size, hash);

	gnutls_free(der.data);
	gnutls_pubkey_deinit(key);

	if (ret != GNUTLS_E_SUCCESS) {
		return KNOT_ERROR;
	}

	return KNOT_EOK;
}

int cert_get_pin(gnutls_x509_crt_t cert, uint8_t *pin, size_t size)
{
	return spki_hash(cert, GNUTLS_DIG_SHA256, pin, size);
}