summaryrefslogtreecommitdiff
path: root/src/libstrongswan/plugins/pem/pem_encoder.c
blob: 13c99a958bf3eb6d8a03940308eb83f3e768f2f3 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
 * Copyright (C) 2010 Andreas Steffen
 * Hochschule fuer Technik Rapperswil
 *
 * 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.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * 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.
 */

#include "pem_encoder.h"

#define BYTES_PER_LINE	48

/**
 * See header.
 */
bool pem_encoder_encode(key_encoding_type_t type, chunk_t *encoding,
						va_list args)
{
	chunk_t asn1;
	char *label;
	u_char *pos;
	size_t len, written, pem_chars, pem_lines;
	chunk_t n, e, d, p, q, exp1, exp2, coeff, to_free = chunk_empty;

	switch (type)
	{
		case KEY_PUB_PEM:
			label ="PUBLIC KEY";
			/* direct PKCS#1 PEM encoding */
			if (key_encoding_args(args, KEY_PART_RSA_PUB_ASN1_DER,
									&asn1, KEY_PART_END) ||
				key_encoding_args(args, KEY_PART_ECDSA_PUB_ASN1_DER,
									&asn1, KEY_PART_END))
			{
				break;
			}
			/* indirect PEM encoding from components */
			if (key_encoding_args(args, KEY_PART_RSA_MODULUS, &n,
									KEY_PART_RSA_PUB_EXP, &e, KEY_PART_END))
			{
				if (lib->encoding->encode(lib->encoding, KEY_PUB_SPKI_ASN1_DER,
									NULL, &asn1, KEY_PART_RSA_MODULUS, n,
									KEY_PART_RSA_PUB_EXP, e, KEY_PART_END))
				{
					to_free = asn1;
					break;
				}
			}
			return FALSE;
		case KEY_PRIV_PEM:
			label ="RSA PRIVATE KEY";
			/* direct PKCS#1 PEM encoding */
			if (key_encoding_args(args, KEY_PART_RSA_PRIV_ASN1_DER,
									&asn1, KEY_PART_END))
			{
				break;
			}
			/* indirect PEM encoding from components */
			if (key_encoding_args(args, KEY_PART_RSA_MODULUS, &n,
							KEY_PART_RSA_PUB_EXP, &e, KEY_PART_RSA_PRIV_EXP, &d,
							KEY_PART_RSA_PRIME1, &p, KEY_PART_RSA_PRIME2, &q,
							KEY_PART_RSA_EXP1, &exp1, KEY_PART_RSA_EXP2, &exp2,
							KEY_PART_RSA_COEFF, &coeff, KEY_PART_END))
			{
				if (lib->encoding->encode(lib->encoding, KEY_PRIV_ASN1_DER, NULL,
							&asn1, KEY_PART_RSA_MODULUS, n,
							KEY_PART_RSA_PUB_EXP, e, KEY_PART_RSA_PRIV_EXP, d,
							KEY_PART_RSA_PRIME1, p, KEY_PART_RSA_PRIME2, q,
							KEY_PART_RSA_EXP1, exp1, KEY_PART_RSA_EXP2, exp2,
							KEY_PART_RSA_COEFF, coeff, KEY_PART_END))
				{
					to_free = asn1;
					break;
				}
			}
			if (key_encoding_args(args, KEY_PART_ECDSA_PRIV_ASN1_DER,
								   &asn1, KEY_PART_END))
			{
				label ="EC PRIVATE KEY";
				break;
			}
			return FALSE;
		default:
			return FALSE;
	}

	/* compute and allocate maximum size of PEM object */
	pem_chars = 4*(asn1.len + 2)/3;
	pem_lines = (asn1.len + BYTES_PER_LINE - 1) / BYTES_PER_LINE;
	*encoding = chunk_alloc(5 + 2*(6 + strlen(label) + 6) + 3 + pem_chars + pem_lines);
	pos = encoding->ptr;
	len = encoding->len;

	/* write PEM header */
	written = snprintf(pos, len, "-----BEGIN %s-----\n", label);
	pos += written;
	len -= written;

	/* write PEM body */
	while (pem_lines--)
	{
		chunk_t asn1_line, pem_line;

		asn1_line = chunk_create(asn1.ptr, min(asn1.len, BYTES_PER_LINE));
		asn1.ptr += asn1_line.len;
		asn1.len -= asn1_line.len;
		pem_line =  chunk_to_base64(asn1_line, pos);
		pos += pem_line.len;
		len -= pem_line.len;
		*pos = '\n';
		pos++;
		len--;
	}

	chunk_clear(&to_free);

	/* write PEM trailer */
	written = snprintf(pos, len, "-----END %s-----", label);
	pos += written;
	len -= written;

	/* replace termination null character with newline */
	*pos = '\n';
	pos++;
	len--;

	/* compute effective length of PEM object */
	encoding->len = pos - encoding->ptr;
	return TRUE;
}