| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Public Key layer for writing key files and structures | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |  *  Copyright The Mbed TLS Contributors | 
					
						
							| 
									
										
										
										
											2024-01-30 14:09:13 +01:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PK_WRITE_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/pk.h"
 | 
					
						
							|  |  |  | #include "mbedtls/asn1write.h"
 | 
					
						
							|  |  |  | #include "mbedtls/oid.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #include "mbedtls/platform_util.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "mbedtls/error.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							|  |  |  | #include "mbedtls/rsa.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #include "mbedtls/bignum.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #include "mbedtls/ecp.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #include "mbedtls/platform_util.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_C)
 | 
					
						
							|  |  |  | #include "mbedtls/ecdsa.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PEM_WRITE_C)
 | 
					
						
							|  |  |  | #include "mbedtls/pem.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | #include "psa/crypto.h"
 | 
					
						
							|  |  |  | #include "mbedtls/psa_util.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #include "mbedtls/platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | /* Parameter validation macros based on platform_util.h */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define PK_VALIDATE_RET(cond)    \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE_RET(cond, MBEDTLS_ERR_PK_BAD_INPUT_DATA) | 
					
						
							|  |  |  | #define PK_VALIDATE(cond)        \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE(cond) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  RSAPublicKey ::= SEQUENCE { | 
					
						
							|  |  |  |  *      modulus           INTEGER,  -- n | 
					
						
							|  |  |  |  *      publicExponent    INTEGER   -- e | 
					
						
							|  |  |  |  *  } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int pk_write_rsa_pubkey(unsigned char **p, unsigned char *start, | 
					
						
							|  |  |  |                                mbedtls_rsa_context *rsa) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  |     mbedtls_mpi T; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&T); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Export E */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, NULL, NULL, &T)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_asn1_write_mpi(p, start, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Export N */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_rsa_export(rsa, &T, NULL, NULL, NULL, NULL)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_asn1_write_mpi(p, start, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | end_of_export: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&T); | 
					
						
							|  |  |  |     if (ret < 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len)); | 
					
						
							|  |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start, MBEDTLS_ASN1_CONSTRUCTED | | 
					
						
							|  |  |  |                                                      MBEDTLS_ASN1_SEQUENCE)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * EC public key is an EC point | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int pk_write_ec_pubkey(unsigned char **p, unsigned char *start, | 
					
						
							|  |  |  |                               mbedtls_ecp_keypair *ec) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  |     unsigned char buf[MBEDTLS_ECP_MAX_PT_LEN]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ecp_point_write_binary(&ec->grp, &ec->Q, | 
					
						
							|  |  |  |                                               MBEDTLS_ECP_PF_UNCOMPRESSED, | 
					
						
							|  |  |  |                                               &len, buf, sizeof(buf))) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (*p < start || (size_t) (*p - start) < len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *p -= len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(*p, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ECParameters ::= CHOICE { | 
					
						
							|  |  |  |  *   namedCurve         OBJECT IDENTIFIER | 
					
						
							|  |  |  |  * } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int pk_write_ec_param(unsigned char **p, unsigned char *start, | 
					
						
							|  |  |  |                              mbedtls_ecp_keypair *ec) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  |     const char *oid; | 
					
						
							|  |  |  |     size_t oid_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_oid_get_oid_by_ec_grp(ec->grp.id, &oid, &oid_len)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_oid(p, start, oid, oid_len)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * privateKey  OCTET STRING -- always of length ceil(log2(n)/8) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int pk_write_ec_private(unsigned char **p, unsigned char *start, | 
					
						
							|  |  |  |                                mbedtls_ecp_keypair *ec) | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     size_t byte_length = (ec->grp.pbits + 7) / 8; | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |     unsigned char tmp[MBEDTLS_ECP_MAX_BYTES]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_ecp_write_key(ec, tmp, byte_length); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_asn1_write_octet_string(p, start, tmp, byte_length); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(tmp, byte_length); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_pk_write_pubkey(unsigned char **p, unsigned char *start, | 
					
						
							|  |  |  |                             const mbedtls_pk_context *key) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-04 18:09:03 +02:00
										 |  |  |     (void) p; | 
					
						
							|  |  |  |     (void) start; | 
					
						
							|  |  |  |     (void) key; | 
					
						
							|  |  |  |     (void) ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     PK_VALIDATE_RET(p != NULL); | 
					
						
							|  |  |  |     PK_VALIDATE_RET(*p != NULL); | 
					
						
							|  |  |  |     PK_VALIDATE_RET(start != NULL); | 
					
						
							|  |  |  |     PK_VALIDATE_RET(key != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_RSA) { | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(len, pk_write_rsa_pubkey(p, start, mbedtls_pk_rsa(*key))); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_ECKEY) { | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(len, pk_write_ec_pubkey(p, start, mbedtls_pk_ec(*key))); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_OPAQUE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         size_t buffer_size; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         psa_key_id_t *key_id = (psa_key_id_t *) key->pk_ctx; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (*p < start) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_PK_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         buffer_size = (size_t) (*p - start); | 
					
						
							|  |  |  |         if (psa_export_public_key(*key_id, start, buffer_size, &len) | 
					
						
							|  |  |  |             != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_PK_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             *p -= len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             memmove(*p, start, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_pk_write_pubkey_der(mbedtls_pk_context *key, unsigned char *buf, size_t size) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char *c; | 
					
						
							|  |  |  |     size_t len = 0, par_len = 0, oid_len; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     mbedtls_pk_type_t pk_type; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     const char *oid; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     PK_VALIDATE_RET(key != NULL); | 
					
						
							|  |  |  |     if (size == 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PK_VALIDATE_RET(buf != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     c = buf + size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_pk_write_pubkey(&c, buf, key)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (c - buf < 1) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *  SubjectPublicKeyInfo  ::=  SEQUENCE  { | 
					
						
							|  |  |  |      *       algorithm            AlgorithmIdentifier, | 
					
						
							|  |  |  |      *       subjectPublicKey     BIT STRING } | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     *--c = 0; | 
					
						
							|  |  |  |     len += 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len)); | 
					
						
							|  |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_BIT_STRING)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     pk_type = mbedtls_pk_get_type(key); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (pk_type == MBEDTLS_PK_ECKEY) { | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(par_len, pk_write_ec_param(&c, buf, mbedtls_pk_ec(*key))); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (pk_type == MBEDTLS_PK_OPAQUE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; | 
					
						
							|  |  |  |         psa_key_type_t key_type; | 
					
						
							|  |  |  |         psa_key_id_t key_id; | 
					
						
							|  |  |  |         psa_ecc_family_t curve; | 
					
						
							|  |  |  |         size_t bits; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         key_id = *((psa_key_id_t *) key->pk_ctx); | 
					
						
							|  |  |  |         if (PSA_SUCCESS != psa_get_key_attributes(key_id, &attributes)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_PK_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         key_type = psa_get_key_type(&attributes); | 
					
						
							|  |  |  |         bits = psa_get_key_bits(&attributes); | 
					
						
							|  |  |  |         psa_reset_key_attributes(&attributes); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         curve = PSA_KEY_TYPE_ECC_GET_FAMILY(key_type); | 
					
						
							|  |  |  |         if (curve == 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_psa_get_ecc_oid_from_id(curve, bits, &oid, &oid_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Write EC algorithm parameters; that's akin
 | 
					
						
							|  |  |  |          * to pk_write_ec_param() above. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(par_len, mbedtls_asn1_write_oid(&c, buf, | 
					
						
							|  |  |  |                                                              oid, oid_len)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* The rest of the function works as for legacy EC contexts. */ | 
					
						
							|  |  |  |         pk_type = MBEDTLS_PK_ECKEY; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_oid_get_oid_by_pk_alg(pk_type, &oid, | 
					
						
							|  |  |  |                                              &oid_len)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_algorithm_identifier(&c, buf, oid, oid_len, | 
					
						
							|  |  |  |                                                                       par_len)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len)); | 
					
						
							|  |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_CONSTRUCTED | | 
					
						
							|  |  |  |                                                      MBEDTLS_ASN1_SEQUENCE)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_pk_write_key_der(mbedtls_pk_context *key, unsigned char *buf, size_t size) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     unsigned char *c; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-04 18:09:03 +02:00
										 |  |  |     (void) ret; | 
					
						
							|  |  |  |     (void) c; | 
					
						
							|  |  |  |     (void) key; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     PK_VALIDATE_RET(key != NULL); | 
					
						
							|  |  |  |     if (size == 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PK_VALIDATE_RET(buf != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     c = buf + size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_RSA) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         mbedtls_mpi T; /* Temporary holding the exported parameters */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_rsa_context *rsa = mbedtls_pk_rsa(*key); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Export the parameters one after another to avoid simultaneous copies. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_init(&T); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Export QP */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export_crt(rsa, NULL, NULL, &T)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export DQ */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export_crt(rsa, NULL, &T, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export DP */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export_crt(rsa, &T, NULL, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export Q */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, | 
					
						
							|  |  |  |                                       &T, NULL, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export P */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export(rsa, NULL, &T, | 
					
						
							|  |  |  |                                       NULL, NULL, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export D */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, | 
					
						
							|  |  |  |                                       NULL, &T, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export E */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, | 
					
						
							|  |  |  |                                       NULL, NULL, &T)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Export N */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_rsa_export(rsa, &T, NULL, | 
					
						
							|  |  |  |                                       NULL, NULL, NULL)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_asn1_write_mpi(&c, buf, &T)) < 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto end_of_export; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | end_of_export: | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_free(&T); | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_int(&c, buf, 0)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, | 
					
						
							|  |  |  |                                                          buf, MBEDTLS_ASN1_CONSTRUCTED | | 
					
						
							|  |  |  |                                                          MBEDTLS_ASN1_SEQUENCE)); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_RSA_C */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_ECKEY) { | 
					
						
							|  |  |  |         mbedtls_ecp_keypair *ec = mbedtls_pk_ec(*key); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         size_t pub_len = 0, par_len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * RFC 5915, or SEC1 Appendix C.4 | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * ECPrivateKey ::= SEQUENCE { | 
					
						
							|  |  |  |          *      version        INTEGER { ecPrivkeyVer1(1) } (ecPrivkeyVer1), | 
					
						
							|  |  |  |          *      privateKey     OCTET STRING, | 
					
						
							|  |  |  |          *      parameters [0] ECParameters {{ NamedCurve }} OPTIONAL, | 
					
						
							|  |  |  |          *      publicKey  [1] BIT STRING OPTIONAL | 
					
						
							|  |  |  |          *    } | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* publicKey */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(pub_len, pk_write_ec_pubkey(&c, buf, ec)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (c - buf < 1) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *--c = 0; | 
					
						
							|  |  |  |         pub_len += 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(pub_len, mbedtls_asn1_write_len(&c, buf, pub_len)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(pub_len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_BIT_STRING)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(pub_len, mbedtls_asn1_write_len(&c, buf, pub_len)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(pub_len, mbedtls_asn1_write_tag(&c, buf, | 
					
						
							|  |  |  |                                                              MBEDTLS_ASN1_CONTEXT_SPECIFIC | | 
					
						
							|  |  |  |                                                              MBEDTLS_ASN1_CONSTRUCTED | 1)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += pub_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* parameters */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(par_len, pk_write_ec_param(&c, buf, ec)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(par_len, mbedtls_asn1_write_len(&c, buf, par_len)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(par_len, mbedtls_asn1_write_tag(&c, buf, | 
					
						
							|  |  |  |                                                              MBEDTLS_ASN1_CONTEXT_SPECIFIC | | 
					
						
							|  |  |  |                                                              MBEDTLS_ASN1_CONSTRUCTED | 0)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         len += par_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |         /* privateKey */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(len, pk_write_ec_private(&c, buf, ec)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* version */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_int(&c, buf, 1)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len)); | 
					
						
							|  |  |  |         MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_CONSTRUCTED | | 
					
						
							|  |  |  |                                                          MBEDTLS_ASN1_SEQUENCE)); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PEM_WRITE_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PEM_BEGIN_PUBLIC_KEY    "-----BEGIN PUBLIC KEY-----\n"
 | 
					
						
							|  |  |  | #define PEM_END_PUBLIC_KEY      "-----END PUBLIC KEY-----\n"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PEM_BEGIN_PRIVATE_KEY_RSA   "-----BEGIN RSA PRIVATE KEY-----\n"
 | 
					
						
							|  |  |  | #define PEM_END_PRIVATE_KEY_RSA     "-----END RSA PRIVATE KEY-----\n"
 | 
					
						
							|  |  |  | #define PEM_BEGIN_PRIVATE_KEY_EC    "-----BEGIN EC PRIVATE KEY-----\n"
 | 
					
						
							|  |  |  | #define PEM_END_PRIVATE_KEY_EC      "-----END EC PRIVATE KEY-----\n"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Max sizes of key per types. Shown as tag + len (+ content). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * RSA public keys: | 
					
						
							|  |  |  |  *  SubjectPublicKeyInfo  ::=  SEQUENCE  {          1 + 3 | 
					
						
							|  |  |  |  *       algorithm            AlgorithmIdentifier,  1 + 1 (sequence) | 
					
						
							|  |  |  |  *                                                + 1 + 1 + 9 (rsa oid) | 
					
						
							|  |  |  |  *                                                + 1 + 1 (params null) | 
					
						
							|  |  |  |  *       subjectPublicKey     BIT STRING }          1 + 3 + (1 + below) | 
					
						
							|  |  |  |  *  RSAPublicKey ::= SEQUENCE {                     1 + 3 | 
					
						
							|  |  |  |  *      modulus           INTEGER,  -- n            1 + 3 + MPI_MAX + 1 | 
					
						
							|  |  |  |  *      publicExponent    INTEGER   -- e            1 + 3 + MPI_MAX + 1 | 
					
						
							|  |  |  |  *  } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define RSA_PUB_DER_MAX_BYTES   (38 + 2 * MBEDTLS_MPI_MAX_SIZE)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * RSA private keys: | 
					
						
							|  |  |  |  *  RSAPrivateKey ::= SEQUENCE {                    1 + 3 | 
					
						
							|  |  |  |  *      version           Version,                  1 + 1 + 1 | 
					
						
							|  |  |  |  *      modulus           INTEGER,                  1 + 3 + MPI_MAX + 1 | 
					
						
							|  |  |  |  *      publicExponent    INTEGER,                  1 + 3 + MPI_MAX + 1 | 
					
						
							|  |  |  |  *      privateExponent   INTEGER,                  1 + 3 + MPI_MAX + 1 | 
					
						
							|  |  |  |  *      prime1            INTEGER,                  1 + 3 + MPI_MAX / 2 + 1 | 
					
						
							|  |  |  |  *      prime2            INTEGER,                  1 + 3 + MPI_MAX / 2 + 1 | 
					
						
							|  |  |  |  *      exponent1         INTEGER,                  1 + 3 + MPI_MAX / 2 + 1 | 
					
						
							|  |  |  |  *      exponent2         INTEGER,                  1 + 3 + MPI_MAX / 2 + 1 | 
					
						
							|  |  |  |  *      coefficient       INTEGER,                  1 + 3 + MPI_MAX / 2 + 1 | 
					
						
							|  |  |  |  *      otherPrimeInfos   OtherPrimeInfos OPTIONAL  0 (not supported) | 
					
						
							|  |  |  |  *  } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define MPI_MAX_SIZE_2          (MBEDTLS_MPI_MAX_SIZE / 2 + \
 | 
					
						
							|  |  |  |                                  MBEDTLS_MPI_MAX_SIZE % 2) | 
					
						
							|  |  |  | #define RSA_PRV_DER_MAX_BYTES   (47 + 3 * MBEDTLS_MPI_MAX_SIZE \
 | 
					
						
							|  |  |  |                                  + 5 * MPI_MAX_SIZE_2) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else /* MBEDTLS_RSA_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_PUB_DER_MAX_BYTES   0
 | 
					
						
							|  |  |  | #define RSA_PRV_DER_MAX_BYTES   0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * EC public keys: | 
					
						
							|  |  |  |  *  SubjectPublicKeyInfo  ::=  SEQUENCE  {      1 + 2 | 
					
						
							|  |  |  |  *    algorithm         AlgorithmIdentifier,    1 + 1 (sequence) | 
					
						
							|  |  |  |  *                                            + 1 + 1 + 7 (ec oid) | 
					
						
							|  |  |  |  *                                            + 1 + 1 + 9 (namedCurve oid) | 
					
						
							|  |  |  |  *    subjectPublicKey  BIT STRING              1 + 2 + 1               [1] | 
					
						
							|  |  |  |  *                                            + 1 (point format)        [1] | 
					
						
							|  |  |  |  *                                            + 2 * ECP_MAX (coords)    [1] | 
					
						
							|  |  |  |  *  } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECP_PUB_DER_MAX_BYTES   (30 + 2 * MBEDTLS_ECP_MAX_BYTES)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * EC private keys: | 
					
						
							|  |  |  |  * ECPrivateKey ::= SEQUENCE {                  1 + 2 | 
					
						
							|  |  |  |  *      version        INTEGER ,                1 + 1 + 1 | 
					
						
							|  |  |  |  *      privateKey     OCTET STRING,            1 + 1 + ECP_MAX | 
					
						
							|  |  |  |  *      parameters [0] ECParameters OPTIONAL,   1 + 1 + (1 + 1 + 9) | 
					
						
							|  |  |  |  *      publicKey  [1] BIT STRING OPTIONAL      1 + 2 + [1] above | 
					
						
							|  |  |  |  *    } | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECP_PRV_DER_MAX_BYTES   (29 + 3 * MBEDTLS_ECP_MAX_BYTES)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else /* MBEDTLS_ECP_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ECP_PUB_DER_MAX_BYTES   0
 | 
					
						
							|  |  |  | #define ECP_PRV_DER_MAX_BYTES   0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define PUB_DER_MAX_BYTES   (RSA_PUB_DER_MAX_BYTES > ECP_PUB_DER_MAX_BYTES ? \
 | 
					
						
							|  |  |  |                              RSA_PUB_DER_MAX_BYTES : ECP_PUB_DER_MAX_BYTES) | 
					
						
							|  |  |  | #define PRV_DER_MAX_BYTES   (RSA_PRV_DER_MAX_BYTES > ECP_PRV_DER_MAX_BYTES ? \
 | 
					
						
							|  |  |  |                              RSA_PRV_DER_MAX_BYTES : ECP_PRV_DER_MAX_BYTES) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_pk_write_pubkey_pem(mbedtls_pk_context *key, unsigned char *buf, size_t size) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char output_buf[PUB_DER_MAX_BYTES]; | 
					
						
							|  |  |  |     size_t olen = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     PK_VALIDATE_RET(key != NULL); | 
					
						
							|  |  |  |     PK_VALIDATE_RET(buf != NULL || size == 0); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_pk_write_pubkey_der(key, output_buf, | 
					
						
							|  |  |  |                                            sizeof(output_buf))) < 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_pem_write_buffer(PEM_BEGIN_PUBLIC_KEY, PEM_END_PUBLIC_KEY, | 
					
						
							|  |  |  |                                         output_buf + sizeof(output_buf) - ret, | 
					
						
							|  |  |  |                                         ret, buf, size, &olen)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_pk_write_key_pem(mbedtls_pk_context *key, unsigned char *buf, size_t size) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char output_buf[PRV_DER_MAX_BYTES]; | 
					
						
							|  |  |  |     const char *begin, *end; | 
					
						
							|  |  |  |     size_t olen = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     PK_VALIDATE_RET(key != NULL); | 
					
						
							|  |  |  |     PK_VALIDATE_RET(buf != NULL || size == 0); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_pk_write_key_der(key, output_buf, sizeof(output_buf))) < 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_RSA) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         begin = PEM_BEGIN_PRIVATE_KEY_RSA; | 
					
						
							|  |  |  |         end = PEM_END_PRIVATE_KEY_RSA; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_get_type(key) == MBEDTLS_PK_ECKEY) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         begin = PEM_BEGIN_PRIVATE_KEY_EC; | 
					
						
							|  |  |  |         end = PEM_END_PRIVATE_KEY_EC; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_pem_write_buffer(begin, end, | 
					
						
							|  |  |  |                                         output_buf + sizeof(output_buf) - ret, | 
					
						
							|  |  |  |                                         ret, buf, size, &olen)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PEM_WRITE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_PK_WRITE_C */
 |