blob: b6744cee2eed0effc7c7c198dff256c309304ce4 [file] [log] [blame]
Nayna Jainc9deb182020-11-16 19:03:12 +00001/**
2 * \file pkcs7.h
3 *
Dave Rodgman957cc362023-03-10 17:14:52 +00004 * \brief PKCS #7 generic defines and structures
Nayna Jainc9deb182020-11-16 19:03:12 +00005 * https://tools.ietf.org/html/rfc2315
6 */
7/*
Nick Child5d881c32022-02-28 10:09:16 -06008 * Copyright The Mbed TLS Contributors
Nayna Jainc9deb182020-11-16 19:03:12 +00009 * SPDX-License-Identifier: Apache-2.0
10 *
11 * Licensed under the Apache License, Version 2.0 (the "License"); you may
12 * not use this file except in compliance with the License.
13 * You may obtain a copy of the License at
14 *
15 * http://www.apache.org/licenses/LICENSE-2.0
16 *
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
19 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * See the License for the specific language governing permissions and
21 * limitations under the License.
Nayna Jainc9deb182020-11-16 19:03:12 +000022 */
23
24/**
Dave Rodgman957cc362023-03-10 17:14:52 +000025 * Note: For the time being, this implementation of the PKCS #7 cryptographic
26 * message syntax is a partial implementation of RFC 2315.
Dave Rodgman25b2dfa2023-03-11 13:00:41 +000027 * Differences include:
Nayna Jainc9deb182020-11-16 19:03:12 +000028 * - The RFC specifies 6 different content types. The only type currently
Dave Rodgmanbcc92d42023-03-14 07:13:44 +000029 * supported in Mbed TLS is the signed-data content type.
Dave Rodgman957cc362023-03-10 17:14:52 +000030 * - The only supported PKCS #7 Signed Data syntax version is version 1
Nick Child8ce1b1a2022-09-14 14:51:23 -050031 * - The RFC specifies support for BER. This implementation is limited to
Nayna Jainc9deb182020-11-16 19:03:12 +000032 * DER only.
33 * - The RFC specifies that multiple digest algorithms can be specified
Nick Child8ce1b1a2022-09-14 14:51:23 -050034 * in the Signed Data type. Only one digest algorithm is supported in Mbed TLS.
Dave Rodgmanefbc5f72023-03-13 12:15:49 +000035 * - The RFC specifies the Signed Data type can contain multiple X.509 or PKCS #6
Nick Child8ce1b1a2022-09-14 14:51:23 -050036 * certificates. In Mbed TLS, this list can only contain 0 or 1 certificates
Dave Rodgmanefbc5f72023-03-13 12:15:49 +000037 * and they must be in X.509 format.
Nayna Jainc9deb182020-11-16 19:03:12 +000038 * - The RFC specifies the Signed Data type can contain
Dave Rodgmanefbc5f72023-03-13 12:15:49 +000039 * certificate-revocation lists (CRLs). This implementation has no support
40 * for CRLs so it is assumed to be an empty list.
Nick Childbb82ab72022-10-28 12:28:54 -050041 * - The RFC allows for SignerInfo structure to optionally contain
42 * unauthenticatedAttributes and authenticatedAttributes. In Mbed TLS it is
43 * assumed these fields are empty.
Nick Child3dafc6c2023-02-07 19:59:58 +000044 * - The RFC allows for the signed Data type to contain contentInfo. This
45 * implementation assumes the type is DATA and the content is empty.
Nayna Jainc9deb182020-11-16 19:03:12 +000046 */
47
48#ifndef MBEDTLS_PKCS7_H
49#define MBEDTLS_PKCS7_H
50
Nick Child390e61a2021-08-09 13:33:14 -040051#include "mbedtls/private_access.h"
52
Nayna Jainc9deb182020-11-16 19:03:12 +000053#include "mbedtls/build_info.h"
54
Nick Child7dbe8522022-09-30 17:24:29 -050055#include "mbedtls/asn1.h"
56#include "mbedtls/x509.h"
57#include "mbedtls/x509_crt.h"
Nayna Jainc9deb182020-11-16 19:03:12 +000058
59/**
Dave Rodgman957cc362023-03-10 17:14:52 +000060 * \name PKCS #7 Module Error codes
Nayna Jainc9deb182020-11-16 19:03:12 +000061 * \{
62 */
63#define MBEDTLS_ERR_PKCS7_INVALID_FORMAT -0x5300 /**< The format is invalid, e.g. different type expected. */
Nick Child9512bde2022-09-16 09:49:06 -050064#define MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE -0x5380 /**< Unavailable feature, e.g. anything other than signed data. */
Dave Rodgman957cc362023-03-10 17:14:52 +000065#define MBEDTLS_ERR_PKCS7_INVALID_VERSION -0x5400 /**< The PKCS #7 version element is invalid or cannot be parsed. */
66#define MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO -0x5480 /**< The PKCS #7 content info is invalid or cannot be parsed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000067#define MBEDTLS_ERR_PKCS7_INVALID_ALG -0x5500 /**< The algorithm tag or value is invalid or cannot be parsed. */
Nick Child9512bde2022-09-16 09:49:06 -050068#define MBEDTLS_ERR_PKCS7_INVALID_CERT -0x5580 /**< The certificate tag or value is invalid or cannot be parsed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000069#define MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE -0x5600 /**< Error parsing the signature */
Nick Child9512bde2022-09-16 09:49:06 -050070#define MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO -0x5680 /**< Error parsing the signer's info */
Nayna Jainc9deb182020-11-16 19:03:12 +000071#define MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA -0x5700 /**< Input invalid. */
Nick Child9512bde2022-09-16 09:49:06 -050072#define MBEDTLS_ERR_PKCS7_ALLOC_FAILED -0x5780 /**< Allocation of memory failed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000073#define MBEDTLS_ERR_PKCS7_VERIFY_FAIL -0x5800 /**< Verification Failed */
Dave Rodgman957cc362023-03-10 17:14:52 +000074#define MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID -0x5880 /**< The PKCS #7 date issued/expired dates are invalid */
Nayna Jainc9deb182020-11-16 19:03:12 +000075/* \} name */
76
77/**
Dave Rodgman957cc362023-03-10 17:14:52 +000078 * \name PKCS #7 Supported Version
Nayna Jainc9deb182020-11-16 19:03:12 +000079 * \{
80 */
81#define MBEDTLS_PKCS7_SUPPORTED_VERSION 0x01
82/* \} name */
83
84#ifdef __cplusplus
85extern "C" {
86#endif
87
88/**
Dave Rodgman957cc362023-03-10 17:14:52 +000089 * Type-length-value structure that allows for ASN.1 using DER.
Nayna Jainc9deb182020-11-16 19:03:12 +000090 */
91typedef mbedtls_asn1_buf mbedtls_pkcs7_buf;
92
93/**
Dave Rodgman957cc362023-03-10 17:14:52 +000094 * Container for ASN.1 named information objects.
Nayna Jainc9deb182020-11-16 19:03:12 +000095 * It allows for Relative Distinguished Names (e.g. cn=localhost,ou=code,etc.).
96 */
97typedef mbedtls_asn1_named_data mbedtls_pkcs7_name;
98
99/**
100 * Container for a sequence of ASN.1 items
101 */
102typedef mbedtls_asn1_sequence mbedtls_pkcs7_sequence;
103
104/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000105 * PKCS #7 types
Nayna Jain673a2262020-12-14 22:44:49 +0000106 */
107typedef enum {
108 MBEDTLS_PKCS7_NONE=0,
109 MBEDTLS_PKCS7_DATA,
110 MBEDTLS_PKCS7_SIGNED_DATA,
111 MBEDTLS_PKCS7_ENVELOPED_DATA,
112 MBEDTLS_PKCS7_SIGNED_AND_ENVELOPED_DATA,
113 MBEDTLS_PKCS7_DIGESTED_DATA,
114 MBEDTLS_PKCS7_ENCRYPTED_DATA,
115}
116mbedtls_pkcs7_type;
117
118/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000119 * Structure holding PKCS #7 signer info
Nayna Jainc9deb182020-11-16 19:03:12 +0000120 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100121typedef struct mbedtls_pkcs7_signer_info {
Nick Child390e61a2021-08-09 13:33:14 -0400122 int MBEDTLS_PRIVATE(version);
123 mbedtls_x509_buf MBEDTLS_PRIVATE(serial);
124 mbedtls_x509_name MBEDTLS_PRIVATE(issuer);
125 mbedtls_x509_buf MBEDTLS_PRIVATE(issuer_raw);
126 mbedtls_x509_buf MBEDTLS_PRIVATE(alg_identifier);
127 mbedtls_x509_buf MBEDTLS_PRIVATE(sig_alg_identifier);
128 mbedtls_x509_buf MBEDTLS_PRIVATE(sig);
129 struct mbedtls_pkcs7_signer_info *MBEDTLS_PRIVATE(next);
Nayna Jainc9deb182020-11-16 19:03:12 +0000130}
131mbedtls_pkcs7_signer_info;
132
133/**
Nayna Jainc9deb182020-11-16 19:03:12 +0000134 * Structure holding the signed data section
135 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100136typedef struct mbedtls_pkcs7_signed_data {
Nick Child390e61a2021-08-09 13:33:14 -0400137 int MBEDTLS_PRIVATE(version);
138 mbedtls_pkcs7_buf MBEDTLS_PRIVATE(digest_alg_identifiers);
Nick Child390e61a2021-08-09 13:33:14 -0400139 int MBEDTLS_PRIVATE(no_of_certs);
140 mbedtls_x509_crt MBEDTLS_PRIVATE(certs);
141 int MBEDTLS_PRIVATE(no_of_crls);
142 mbedtls_x509_crl MBEDTLS_PRIVATE(crl);
143 int MBEDTLS_PRIVATE(no_of_signers);
144 mbedtls_pkcs7_signer_info MBEDTLS_PRIVATE(signers);
Nayna Jainc9deb182020-11-16 19:03:12 +0000145}
146mbedtls_pkcs7_signed_data;
147
148/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000149 * Structure holding PKCS #7 structure, only signed data for now
Nayna Jainc9deb182020-11-16 19:03:12 +0000150 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100151typedef struct mbedtls_pkcs7 {
Nick Child390e61a2021-08-09 13:33:14 -0400152 mbedtls_pkcs7_buf MBEDTLS_PRIVATE(raw);
Nick Child390e61a2021-08-09 13:33:14 -0400153 mbedtls_pkcs7_signed_data MBEDTLS_PRIVATE(signed_data);
Nayna Jainc9deb182020-11-16 19:03:12 +0000154}
155mbedtls_pkcs7;
156
157/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000158 * \brief Initialize mbedtls_pkcs7 structure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000159 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000160 * \param pkcs7 mbedtls_pkcs7 structure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000161 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100162void mbedtls_pkcs7_init(mbedtls_pkcs7 *pkcs7);
Nayna Jainc9deb182020-11-16 19:03:12 +0000163
164/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000165 * \brief Parse a single DER formatted PKCS #7 detached signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000166 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000167 * \param pkcs7 The mbedtls_pkcs7 structure to be filled by the parser.
168 * \param buf The buffer holding only the DER encoded PKCS #7 content.
Nick Childec817092022-12-15 15:54:03 -0600169 * \param buflen The size in bytes of \p buf. The size must be exactly the
Dave Rodgman957cc362023-03-10 17:14:52 +0000170 * length of the DER encoded PKCS #7 content.
Nayna Jainc9deb182020-11-16 19:03:12 +0000171 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000172 * \note This function makes an internal copy of the PKCS #7 buffer
Nayna Jainc9deb182020-11-16 19:03:12 +0000173 * \p buf. In particular, \p buf may be destroyed or reused
174 * after this call returns.
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500175 * \note Signatures with internal data are not supported.
Nayna Jainc9deb182020-11-16 19:03:12 +0000176 *
Nayna Jain673a2262020-12-14 22:44:49 +0000177 * \return The \c mbedtls_pkcs7_type of \p buf, if successful.
Nayna Jainc9deb182020-11-16 19:03:12 +0000178 * \return A negative error code on failure.
179 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100180int mbedtls_pkcs7_parse_der(mbedtls_pkcs7 *pkcs7, const unsigned char *buf,
181 const size_t buflen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000182
183/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000184 * \brief Verification of PKCS #7 signature against a caller-supplied
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000185 * certificate.
186 *
187 * For each signer in the PKCS structure, this function computes
188 * a signature over the supplied data, using the supplied
189 * certificate and the same digest algorithm as specified by the
190 * signer. It then compares this signature against the
191 * signer's signature; verification succeeds if any comparison
192 * matches.
193 *
194 * This function does not use the certificates held within the
Dave Rodgman957cc362023-03-10 17:14:52 +0000195 * PKCS #7 structure itself, and does not check that the
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500196 * certificate is signed by a trusted certification authority.
Nayna Jainc9deb182020-11-16 19:03:12 +0000197 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000198 * \param pkcs7 mbedtls_pkcs7 structure containing signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000199 * \param cert Certificate containing key to verify signature.
200 * \param data Plain data on which signature has to be verified.
201 * \param datalen Length of the data.
202 *
203 * \note This function internally calculates the hash on the supplied
204 * plain data for signature verification.
205 *
Dave Rodgman235d1d82022-12-01 18:45:02 +0000206 * \return 0 if the signature verifies, or a negative error code on failure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000207 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100208int mbedtls_pkcs7_signed_data_verify(mbedtls_pkcs7 *pkcs7,
209 const mbedtls_x509_crt *cert,
210 const unsigned char *data,
211 size_t datalen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000212
213/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000214 * \brief Verification of PKCS #7 signature against a caller-supplied
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000215 * certificate.
216 *
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500217 * For each signer in the PKCS structure, this function
218 * validates a signature over the supplied hash, using the
219 * supplied certificate and the same digest algorithm as
220 * specified by the signer. Verification succeeds if any
221 * signature is good.
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000222 *
223 * This function does not use the certificates held within the
Dave Rodgman957cc362023-03-10 17:14:52 +0000224 * PKCS #7 structure itself, and does not check that the
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500225 * certificate is signed by a trusted certification authority.
Nayna Jainc9deb182020-11-16 19:03:12 +0000226 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000227 * \param pkcs7 PKCS #7 structure containing signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000228 * \param cert Certificate containing key to verify signature.
229 * \param hash Hash of the plain data on which signature has to be verified.
230 * \param hashlen Length of the hash.
231 *
232 * \note This function is different from mbedtls_pkcs7_signed_data_verify()
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500233 * in that it is directly passed the hash of the data.
Nayna Jainc9deb182020-11-16 19:03:12 +0000234 *
Dave Rodgman235d1d82022-12-01 18:45:02 +0000235 * \return 0 if the signature verifies, or a negative error code on failure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000236 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100237int mbedtls_pkcs7_signed_hash_verify(mbedtls_pkcs7 *pkcs7,
238 const mbedtls_x509_crt *cert,
239 const unsigned char *hash, size_t hashlen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000240
241/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000242 * \brief Unallocate all PKCS #7 data and zeroize the memory.
243 * It doesn't free \p pkcs7 itself. This should be done by the caller.
Nayna Jainc9deb182020-11-16 19:03:12 +0000244 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000245 * \param pkcs7 mbedtls_pkcs7 structure to free.
Nayna Jainc9deb182020-11-16 19:03:12 +0000246 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100247void mbedtls_pkcs7_free(mbedtls_pkcs7 *pkcs7);
Nayna Jainc9deb182020-11-16 19:03:12 +0000248
249#ifdef __cplusplus
250}
251#endif
252
253#endif /* pkcs7.h */