blob: 6c58e1da58530e7abbdd5a3b27b8578944d8ef9b (
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
62
63
64
65
66
67
68
69
70
71
72
|
/* Copyright (C) 2018 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 <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <stdint.h>
#include <time.h>
#include "libdnssec/binary.h"
#include "knot/dnssec/kasp/policy.h"
/*!
* Legacy private key parameters.
*/
typedef struct {
// key information
uint8_t algorithm;
// RSA
dnssec_binary_t modulus;
dnssec_binary_t public_exponent;
dnssec_binary_t private_exponent;
dnssec_binary_t prime_one;
dnssec_binary_t prime_two;
dnssec_binary_t exponent_one;
dnssec_binary_t exponent_two;
dnssec_binary_t coefficient;
// ECDSA
dnssec_binary_t private_key;
// key lifetime
time_t time_created;
time_t time_publish;
time_t time_activate;
time_t time_revoke;
time_t time_inactive;
time_t time_delete;
} bind_privkey_t;
/*!
* Extract parameters from legacy private key file.
*/
int bind_privkey_parse(const char *filename, bind_privkey_t *params);
/*!
* Free private key parameters.
*/
void bind_privkey_free(bind_privkey_t *params);
/*!
* Generate PEM from pub&priv key.
*/
int bind_privkey_to_pem(dnssec_key_t *key, bind_privkey_t *params, dnssec_binary_t *pem);
/*!
* Extract timing info.
*/
void bind_privkey_to_timing(bind_privkey_t *params, knot_kasp_key_timing_t *timing);
|