| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  The RSA public-key cryptosystem | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |  *  Copyright The Mbed TLS Contributors | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  Licensed under the Apache License, Version 2.0 (the "License"); you may | 
					
						
							|  |  |  |  *  not use this file except in compliance with the License. | 
					
						
							|  |  |  |  *  You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
					
						
							|  |  |  |  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  *  See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  *  limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  The following sources were referenced in the design of this implementation | 
					
						
							|  |  |  |  *  of the RSA algorithm: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  [1] A method for obtaining digital signatures and public-key cryptosystems | 
					
						
							|  |  |  |  *      R Rivest, A Shamir, and L Adleman | 
					
						
							|  |  |  |  *      http://people.csail.mit.edu/rivest/pubs.html#RSA78
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  [2] Handbook of Applied Cryptography - 1997, Chapter 8 | 
					
						
							|  |  |  |  *      Menezes, van Oorschot and Vanstone | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  [3] Malware Guard Extension: Using SGX to Conceal Cache Attacks | 
					
						
							|  |  |  |  *      Michael Schwarz, Samuel Weiser, Daniel Gruss, Clémentine Maurice and | 
					
						
							|  |  |  |  *      Stefan Mangard | 
					
						
							|  |  |  |  *      https://arxiv.org/abs/1702.08719v2
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/rsa.h"
 | 
					
						
							|  |  |  | #include "mbedtls/rsa_internal.h"
 | 
					
						
							|  |  |  | #include "mbedtls/oid.h"
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | #include "mbedtls/platform_util.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "mbedtls/error.h"
 | 
					
						
							|  |  |  | #include "constant_time_internal.h"
 | 
					
						
							|  |  |  | #include "mbedtls/constant_time.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  | #include "mbedtls/md.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | #if defined(MBEDTLS_PKCS1_V15) && !defined(__OpenBSD__) && !defined(__NetBSD__)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_ALT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | /* Parameter validation macros */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define RSA_VALIDATE_RET(cond)                                       \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE_RET(cond, MBEDTLS_ERR_RSA_BAD_INPUT_DATA) | 
					
						
							|  |  |  | #define RSA_VALIDATE(cond)                                           \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE(cond) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int mbedtls_rsa_import(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                        const mbedtls_mpi *N, | 
					
						
							|  |  |  |                        const mbedtls_mpi *P, const mbedtls_mpi *Q, | 
					
						
							|  |  |  |                        const mbedtls_mpi *D, const mbedtls_mpi *E) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04: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
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((N != NULL && (ret = mbedtls_mpi_copy(&ctx->N, N)) != 0) || | 
					
						
							|  |  |  |         (P != NULL && (ret = mbedtls_mpi_copy(&ctx->P, P)) != 0) || | 
					
						
							|  |  |  |         (Q != NULL && (ret = mbedtls_mpi_copy(&ctx->Q, Q)) != 0) || | 
					
						
							|  |  |  |         (D != NULL && (ret = mbedtls_mpi_copy(&ctx->D, D)) != 0) || | 
					
						
							|  |  |  |         (E != NULL && (ret = mbedtls_mpi_copy(&ctx->E, E)) != 0)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (N != NULL) { | 
					
						
							|  |  |  |         ctx->len = mbedtls_mpi_size(&ctx->N); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											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_rsa_import_raw(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                            unsigned char const *N, size_t N_len, | 
					
						
							|  |  |  |                            unsigned char const *P, size_t P_len, | 
					
						
							|  |  |  |                            unsigned char const *Q, size_t Q_len, | 
					
						
							|  |  |  |                            unsigned char const *D, size_t D_len, | 
					
						
							|  |  |  |                            unsigned char const *E, size_t E_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (N != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&ctx->N, N, N_len)); | 
					
						
							|  |  |  |         ctx->len = mbedtls_mpi_size(&ctx->N); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (P != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&ctx->P, P, P_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (Q != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&ctx->Q, Q, Q_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (D != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&ctx->D, D, D_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (E != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&ctx->E, E, E_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, 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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Checks whether the context fields are set in such a way | 
					
						
							|  |  |  |  * that the RSA primitives will be able to execute without error. | 
					
						
							|  |  |  |  * It does *not* make guarantees for consistency of the parameters. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int rsa_check_context(mbedtls_rsa_context const *ctx, int is_priv, | 
					
						
							|  |  |  |                              int blinding_needed) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     /* blinding_needed is only used for NO_CRT to decide whether
 | 
					
						
							|  |  |  |      * P,Q need to be present or not. */ | 
					
						
							|  |  |  |     ((void) blinding_needed); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx->len != mbedtls_mpi_size(&ctx->N) || | 
					
						
							|  |  |  |         ctx->len > MBEDTLS_MPI_MAX_SIZE) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * 1. Modular exponentiation needs positive, odd moduli. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Modular exponentiation wrt. N is always used for
 | 
					
						
							|  |  |  |      * RSA public key operations. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_int(&ctx->N, 0) <= 0 || | 
					
						
							|  |  |  |         mbedtls_mpi_get_bit(&ctx->N, 0) == 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     /* Modular exponentiation for P and Q is only
 | 
					
						
							|  |  |  |      * used for private key operations and if CRT | 
					
						
							|  |  |  |      * is used. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && | 
					
						
							|  |  |  |         (mbedtls_mpi_cmp_int(&ctx->P, 0) <= 0 || | 
					
						
							|  |  |  |          mbedtls_mpi_get_bit(&ctx->P, 0) == 0 || | 
					
						
							|  |  |  |          mbedtls_mpi_cmp_int(&ctx->Q, 0) <= 0 || | 
					
						
							|  |  |  |          mbedtls_mpi_get_bit(&ctx->Q, 0) == 0)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* !MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * 2. Exponents must be positive | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Always need E for public key operations */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_int(&ctx->E, 0) <= 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     /* For private key operations, use D or DP & DQ
 | 
					
						
							|  |  |  |      * as (unblinded) exponents. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && mbedtls_mpi_cmp_int(&ctx->D, 0) <= 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && | 
					
						
							|  |  |  |         (mbedtls_mpi_cmp_int(&ctx->DP, 0) <= 0 || | 
					
						
							|  |  |  |          mbedtls_mpi_cmp_int(&ctx->DQ, 0) <= 0)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Blinding shouldn't make exponents negative either,
 | 
					
						
							|  |  |  |      * so check that P, Q >= 1 if that hasn't yet been | 
					
						
							|  |  |  |      * done as part of 1. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && blinding_needed && | 
					
						
							|  |  |  |         (mbedtls_mpi_cmp_int(&ctx->P, 0) <= 0 || | 
					
						
							|  |  |  |          mbedtls_mpi_cmp_int(&ctx->Q, 0) <= 0)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* It wouldn't lead to an error if it wasn't satisfied,
 | 
					
						
							|  |  |  |      * but check for QP >= 1 nonetheless. */ | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->QP, 0) <= 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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_rsa_complete(mbedtls_rsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int have_N, have_P, have_Q, have_D, have_E; | 
					
						
							| 
									
										
										
										
											2020-03-05 16:12:23 +01:00
										 |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     int have_DP, have_DQ, have_QP; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int n_missing, pq_missing, d_missing, is_pub, is_priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     have_N = (mbedtls_mpi_cmp_int(&ctx->N, 0) != 0); | 
					
						
							|  |  |  |     have_P = (mbedtls_mpi_cmp_int(&ctx->P, 0) != 0); | 
					
						
							|  |  |  |     have_Q = (mbedtls_mpi_cmp_int(&ctx->Q, 0) != 0); | 
					
						
							|  |  |  |     have_D = (mbedtls_mpi_cmp_int(&ctx->D, 0) != 0); | 
					
						
							|  |  |  |     have_E = (mbedtls_mpi_cmp_int(&ctx->E, 0) != 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-05 16:12:23 +01:00
										 |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     have_DP = (mbedtls_mpi_cmp_int(&ctx->DP, 0) != 0); | 
					
						
							|  |  |  |     have_DQ = (mbedtls_mpi_cmp_int(&ctx->DQ, 0) != 0); | 
					
						
							|  |  |  |     have_QP = (mbedtls_mpi_cmp_int(&ctx->QP, 0) != 0); | 
					
						
							| 
									
										
										
										
											2020-03-05 16:12:23 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Check whether provided parameters are enough | 
					
						
							|  |  |  |      * to deduce all others. The following incomplete | 
					
						
							|  |  |  |      * parameter sets for private keys are supported: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * (1) P, Q missing. | 
					
						
							|  |  |  |      * (2) D and potentially N missing. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     n_missing  =              have_P &&  have_Q &&  have_D && have_E; | 
					
						
							|  |  |  |     pq_missing =   have_N && !have_P && !have_Q &&  have_D && have_E; | 
					
						
							|  |  |  |     d_missing  =              have_P &&  have_Q && !have_D && have_E; | 
					
						
							|  |  |  |     is_pub     =   have_N && !have_P && !have_Q && !have_D && have_E; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* These three alternatives are mutually exclusive */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     is_priv = n_missing || pq_missing || d_missing; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!is_priv && !is_pub) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 1: Deduce N if P, Q are provided. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!have_N && have_P && have_Q) { | 
					
						
							|  |  |  |         if ((ret = mbedtls_mpi_mul_mpi(&ctx->N, &ctx->P, | 
					
						
							|  |  |  |                                        &ctx->Q)) != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ctx->len = mbedtls_mpi_size(&ctx->N); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 2: Deduce and verify all remaining core parameters. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (pq_missing) { | 
					
						
							|  |  |  |         ret = mbedtls_rsa_deduce_primes(&ctx->N, &ctx->E, &ctx->D, | 
					
						
							|  |  |  |                                         &ctx->P, &ctx->Q); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } else if (d_missing) { | 
					
						
							|  |  |  |         if ((ret = mbedtls_rsa_deduce_private_exponent(&ctx->P, | 
					
						
							|  |  |  |                                                        &ctx->Q, | 
					
						
							|  |  |  |                                                        &ctx->E, | 
					
						
							|  |  |  |                                                        &ctx->D)) != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 3: Deduce all additional parameters specific | 
					
						
							|  |  |  |      *         to our current RSA implementation. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (is_priv && !(have_DP && have_DQ && have_QP)) { | 
					
						
							|  |  |  |         ret = mbedtls_rsa_deduce_crt(&ctx->P,  &ctx->Q,  &ctx->D, | 
					
						
							|  |  |  |                                      &ctx->DP, &ctx->DQ, &ctx->QP); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 3: Basic sanity checks | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return rsa_check_context(ctx, is_priv, 1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_export_raw(const mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                            unsigned char *N, size_t N_len, | 
					
						
							|  |  |  |                            unsigned char *P, size_t P_len, | 
					
						
							|  |  |  |                            unsigned char *Q, size_t Q_len, | 
					
						
							|  |  |  |                            unsigned char *D, size_t D_len, | 
					
						
							|  |  |  |                            unsigned char *E, size_t E_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int is_priv; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check if key is private or public */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     is_priv = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_cmp_int(&ctx->N, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->P, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->Q, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->D, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->E, 0) != 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!is_priv) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* If we're trying to export private parameters for a public key,
 | 
					
						
							|  |  |  |          * something must be wrong. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (P != NULL || Q != NULL || D != NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (N != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->N, N, N_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (P != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->P, P, P_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (Q != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->Q, Q, Q_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (D != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->D, D, D_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (E != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->E, E, E_len)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_export(const mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                        mbedtls_mpi *N, mbedtls_mpi *P, mbedtls_mpi *Q, | 
					
						
							|  |  |  |                        mbedtls_mpi *D, mbedtls_mpi *E) | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     int is_priv; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check if key is private or public */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     is_priv = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_cmp_int(&ctx->N, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->P, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->Q, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->D, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->E, 0) != 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!is_priv) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* If we're trying to export private parameters for a public key,
 | 
					
						
							|  |  |  |          * something must be wrong. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (P != NULL || Q != NULL || D != NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Export all requested core parameters. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((N != NULL && (ret = mbedtls_mpi_copy(N, &ctx->N)) != 0) || | 
					
						
							|  |  |  |         (P != NULL && (ret = mbedtls_mpi_copy(P, &ctx->P)) != 0) || | 
					
						
							|  |  |  |         (Q != NULL && (ret = mbedtls_mpi_copy(Q, &ctx->Q)) != 0) || | 
					
						
							|  |  |  |         (D != NULL && (ret = mbedtls_mpi_copy(D, &ctx->D)) != 0) || | 
					
						
							|  |  |  |         (E != NULL && (ret = mbedtls_mpi_copy(E, &ctx->E)) != 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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Export CRT parameters | 
					
						
							|  |  |  |  * This must also be implemented if CRT is not used, for being able to | 
					
						
							|  |  |  |  * write DER encoded RSA keys. The helper function mbedtls_rsa_deduce_crt | 
					
						
							|  |  |  |  * can be used in this case. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_export_crt(const mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                            mbedtls_mpi *DP, mbedtls_mpi *DQ, mbedtls_mpi *QP) | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     int is_priv; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check if key is private or public */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     is_priv = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_cmp_int(&ctx->N, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->P, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->Q, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->D, 0) != 0 && | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(&ctx->E, 0) != 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!is_priv) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     /* Export all requested blinding parameters. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((DP != NULL && (ret = mbedtls_mpi_copy(DP, &ctx->DP)) != 0) || | 
					
						
							|  |  |  |         (DQ != NULL && (ret = mbedtls_mpi_copy(DQ, &ctx->DQ)) != 0) || | 
					
						
							|  |  |  |         (QP != NULL && (ret = mbedtls_mpi_copy(QP, &ctx->QP)) != 0)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_rsa_deduce_crt(&ctx->P, &ctx->Q, &ctx->D, | 
					
						
							|  |  |  |                                       DP, DQ, QP)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_BAD_INPUT_DATA, ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize an RSA context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_rsa_init(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                       int padding, | 
					
						
							|  |  |  |                       int hash_id) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE(padding == MBEDTLS_RSA_PKCS_V15 || | 
					
						
							|  |  |  |                  padding == MBEDTLS_RSA_PKCS_V21); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ctx, 0, sizeof(mbedtls_rsa_context)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_rsa_set_padding(ctx, padding, hash_id); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |     /* Set ctx->ver to nonzero to indicate that the mutex has been
 | 
					
						
							|  |  |  |      * initialized and will need to be freed. */ | 
					
						
							|  |  |  |     ctx->ver = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mutex_init(&ctx->mutex); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set padding for an existing RSA context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_rsa_set_padding(mbedtls_rsa_context *ctx, int padding, | 
					
						
							|  |  |  |                              int hash_id) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE(padding == MBEDTLS_RSA_PKCS_V15 || | 
					
						
							|  |  |  |                  padding == MBEDTLS_RSA_PKCS_V21); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     ctx->padding = padding; | 
					
						
							|  |  |  |     ctx->hash_id = hash_id; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Get length in bytes of RSA modulus | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | size_t mbedtls_rsa_get_len(const mbedtls_rsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ctx->len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_GENPRIME)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Generate an RSA keypair | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This generation method follows the RSA key pair generation procedure of | 
					
						
							|  |  |  |  * FIPS 186-4 if 2^16 < exponent < 2^256 and nbits = 2048 or nbits = 3072. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_gen_key(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                         int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                         void *p_rng, | 
					
						
							|  |  |  |                         unsigned int nbits, int exponent) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     mbedtls_mpi H, G, L; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int prime_quality = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(f_rng != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If the modulus is 1024 bit long or shorter, then the security strength of | 
					
						
							|  |  |  |      * the RSA algorithm is less than or equal to 80 bits and therefore an error | 
					
						
							|  |  |  |      * rate of 2^-80 is sufficient. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (nbits > 1024) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         prime_quality = MBEDTLS_MPI_GEN_PRIME_FLAG_LOW_ERR; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&H); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&G); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&L); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (nbits < 128 || exponent < 3 || nbits % 2 != 0) { | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * find primes P and Q with Q < P so that: | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      * 1.  |P-Q| > 2^( nbits / 2 - 100 ) | 
					
						
							|  |  |  |      * 2.  GCD( E, (P-1)*(Q-1) ) == 1 | 
					
						
							|  |  |  |      * 3.  E^-1 mod LCM(P-1, Q-1) > 2^( nbits / 2 ) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_lset(&ctx->E, exponent)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     do { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_gen_prime(&ctx->P, nbits >> 1, | 
					
						
							|  |  |  |                                               prime_quality, f_rng, p_rng)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_gen_prime(&ctx->Q, nbits >> 1, | 
					
						
							|  |  |  |                                               prime_quality, f_rng, p_rng)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         /* make sure the difference between p and q is not too small (FIPS 186-4 §B.3.3 step 5.4) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&H, &ctx->P, &ctx->Q)); | 
					
						
							|  |  |  |         if (mbedtls_mpi_bitlen(&H) <= ((nbits >= 200) ? ((nbits >> 1) - 99) : 0)) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         /* not required by any standards, but some users rely on the fact that P > Q */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (H.s < 0) { | 
					
						
							|  |  |  |             mbedtls_mpi_swap(&ctx->P, &ctx->Q); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Temporarily replace P,Q by P-1, Q-1 */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_int(&ctx->P, &ctx->P, 1)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_int(&ctx->Q, &ctx->Q, 1)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&H, &ctx->P, &ctx->Q)); | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* check GCD( E, (P-1)*(Q-1) ) == 1 (FIPS 186-4 §B.3.1 criterion 2(a)) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_gcd(&G, &ctx->E, &H)); | 
					
						
							|  |  |  |         if (mbedtls_mpi_cmp_int(&G, 1) != 0) { | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* compute smallest possible D = E^-1 mod LCM(P-1, Q-1) (FIPS 186-4 §B.3.1 criterion 3(b)) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_gcd(&G, &ctx->P, &ctx->Q)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_div_mpi(&L, NULL, &H, &G)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_inv_mod(&ctx->D, &ctx->E, &L)); | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mbedtls_mpi_bitlen(&ctx->D) <= ((nbits + 1) / 2)) {      // (FIPS 186-4 §B.3.1 criterion 3(a))
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } while (1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Restore P,Q */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_add_int(&ctx->P,  &ctx->P, 1)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_add_int(&ctx->Q,  &ctx->Q, 1)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&ctx->N, &ctx->P, &ctx->Q)); | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ctx->len = mbedtls_mpi_size(&ctx->N); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * DP = D mod (P - 1) | 
					
						
							|  |  |  |      * DQ = D mod (Q - 1) | 
					
						
							|  |  |  |      * QP = Q^-1 mod P | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_deduce_crt(&ctx->P, &ctx->Q, &ctx->D, | 
					
						
							|  |  |  |                                            &ctx->DP, &ctx->DQ, &ctx->QP)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Double-check */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_check_privkey(ctx)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&H); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&G); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&L); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_rsa_free(ctx); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((-ret & ~0x7f) == 0) { | 
					
						
							|  |  |  |             ret = MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_KEY_GEN_FAILED, ret); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         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_GENPRIME */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Check a public RSA key | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_check_pubkey(const mbedtls_rsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rsa_check_context(ctx, 0 /* public */, 0 /* no blinding */) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_bitlen(&ctx->N) < 128) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_get_bit(&ctx->E, 0) == 0 || | 
					
						
							|  |  |  |         mbedtls_mpi_bitlen(&ctx->E)     < 2  || | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_mpi(&ctx->E, &ctx->N) >= 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Check for the consistency of all fields in an RSA private key context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_check_privkey(const mbedtls_rsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_check_pubkey(ctx) != 0 || | 
					
						
							|  |  |  |         rsa_check_context(ctx, 1 /* private */, 1 /* blinding */) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_validate_params(&ctx->N, &ctx->P, &ctx->Q, | 
					
						
							|  |  |  |                                     &ctx->D, &ctx->E, NULL, NULL) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     else if (mbedtls_rsa_validate_crt(&ctx->P, &ctx->Q, &ctx->D, | 
					
						
							|  |  |  |                                       &ctx->DP, &ctx->DQ, &ctx->QP) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Check if contexts holding a public and private key match | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_check_pub_priv(const mbedtls_rsa_context *pub, | 
					
						
							|  |  |  |                                const mbedtls_rsa_context *prv) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(pub != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(prv != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_check_pubkey(pub)  != 0 || | 
					
						
							|  |  |  |         mbedtls_rsa_check_privkey(prv) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_mpi(&pub->N, &prv->N) != 0 || | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_mpi(&pub->E, &prv->E) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA public key operation | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_public(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                        const unsigned char *input, | 
					
						
							|  |  |  |                        unsigned char *output) | 
					
						
							| 
									
										
										
										
											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 olen; | 
					
						
							|  |  |  |     mbedtls_mpi T; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(input != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rsa_check_context(ctx, 0 /* public */, 0 /* no blinding */)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&T); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mutex_lock(&ctx->mutex)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&T, input, ctx->len)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_mpi(&T, &ctx->N) >= 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     olen = ctx->len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&T, &T, &ctx->E, &ctx->N, &ctx->RN)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&T, output, olen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mutex_unlock(&ctx->mutex) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_THREADING_MUTEX_ERROR; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&T); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_PUBLIC_FAILED, 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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Generate or update blinding values, see section 10 of: | 
					
						
							|  |  |  |  *  KOCHER, Paul C. Timing attacks on implementations of Diffie-Hellman, RSA, | 
					
						
							|  |  |  |  *  DSS, and other systems. In : Advances in Cryptology-CRYPTO'96. Springer | 
					
						
							|  |  |  |  *  Berlin Heidelberg, 1996. p. 104-113. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int rsa_prepare_blinding(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret, count = 0; | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |     mbedtls_mpi R; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&R); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx->Vf.p != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* We already have blinding values, just update them by squaring */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&ctx->Vi, &ctx->Vi, &ctx->Vi)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&ctx->Vi, &ctx->Vi, &ctx->N)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&ctx->Vf, &ctx->Vf, &ctx->Vf)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&ctx->Vf, &ctx->Vf, &ctx->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Unblinding value: Vf = random number, invertible mod N */ | 
					
						
							|  |  |  |     do { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (count++ > 10) { | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |             ret = MBEDTLS_ERR_RSA_RNG_FAILED; | 
					
						
							|  |  |  |             goto cleanup; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&ctx->Vf, ctx->len - 1, f_rng, p_rng)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |         /* Compute Vf^-1 as R * (R Vf)^-1 to avoid leaks from inv_mod. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, ctx->len - 1, f_rng, p_rng)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&ctx->Vi, &ctx->Vf, &R)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&ctx->Vi, &ctx->Vi, &ctx->N)); | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* At this point, Vi is invertible mod N if and only if both Vf and R
 | 
					
						
							|  |  |  |          * are invertible mod N. If one of them isn't, we don't need to know | 
					
						
							|  |  |  |          * which one, we just loop and choose new values for both of them. | 
					
						
							|  |  |  |          * (Each iteration succeeds with overwhelming probability.) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_mpi_inv_mod(&ctx->Vi, &ctx->Vi, &ctx->N); | 
					
						
							|  |  |  |         if (ret != 0 && ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |             goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } while (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE); | 
					
						
							| 
									
										
										
										
											2020-12-18 21:22:37 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Finish the computation of Vf^-1 = R * (R Vf)^-1 */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&ctx->Vi, &ctx->Vi, &R)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&ctx->Vi, &ctx->Vi, &ctx->N)); | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Blinding value: Vi = Vf^(-e) mod N
 | 
					
						
							|  |  |  |      * (Vi already contains Vf^-1 at this point) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&ctx->Vi, &ctx->Vi, &ctx->E, &ctx->N, &ctx->RN)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&R); | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Exponent blinding supposed to prevent side-channel attacks using multiple | 
					
						
							|  |  |  |  * traces of measurements to recover the RSA key. The more collisions are there, | 
					
						
							|  |  |  |  * the more bits of the key can be recovered. See [3]. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Collecting n collisions with m bit long blinding value requires 2^(m-m/n) | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |  * observations on average. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * For example with 28 byte blinding to achieve 2 collisions the adversary has | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |  * to make 2^112 observations on average. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * (With the currently (as of 2017 April) known best algorithms breaking 2048 | 
					
						
							|  |  |  |  * bit RSA requires approximately as much time as trying out 2^112 random keys. | 
					
						
							|  |  |  |  * Thus in this sense with 28 byte blinding the security is not reduced by | 
					
						
							|  |  |  |  * side-channel attacks like the one in [3]) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This countermeasure does not help if the key recovery is possible with a | 
					
						
							|  |  |  |  * single trace. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define RSA_EXPONENT_BLINDING 28
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA private key operation | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_private(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                         int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                         void *p_rng, | 
					
						
							|  |  |  |                         const unsigned char *input, | 
					
						
							|  |  |  |                         unsigned char *output) | 
					
						
							| 
									
										
										
										
											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 olen; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Temporary holding the result */ | 
					
						
							|  |  |  |     mbedtls_mpi T; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Temporaries holding P-1, Q-1 and the
 | 
					
						
							|  |  |  |      * exponent blinding factor, respectively. */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_mpi P1, Q1, R; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |     /* Temporaries holding the results mod p resp. mod q. */ | 
					
						
							|  |  |  |     mbedtls_mpi TP, TQ; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Temporaries holding the blinded exponents for
 | 
					
						
							|  |  |  |      * the mod p resp. mod q computation (if used). */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_mpi DP_blind, DQ_blind; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Pointers to actual exponents to be used - either the unblinded
 | 
					
						
							|  |  |  |      * or the blinded ones, depending on the presence of a PRNG. */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_mpi *DP = &ctx->DP; | 
					
						
							|  |  |  |     mbedtls_mpi *DQ = &ctx->DQ; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     /* Temporary holding the blinded exponent (if used). */ | 
					
						
							|  |  |  |     mbedtls_mpi D_blind; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Pointer to actual exponent to be used - either the unblinded
 | 
					
						
							|  |  |  |      * or the blinded one, depending on the presence of a PRNG. */ | 
					
						
							|  |  |  |     mbedtls_mpi *D = &ctx->D; | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Temporaries holding the initial input and the double
 | 
					
						
							|  |  |  |      * checked result; should be the same in the end. */ | 
					
						
							|  |  |  |     mbedtls_mpi I, C; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(input  != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rsa_check_context(ctx, 1 /* private key checks */, | 
					
						
							|  |  |  |                           f_rng != NULL /* blinding y/n       */) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mutex_lock(&ctx->mutex)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* MPI Initialization */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&T); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&P1); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&Q1); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&R); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_init(&D_blind); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_init(&DP_blind); | 
					
						
							|  |  |  |         mbedtls_mpi_init(&DQ_blind); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&TP); mbedtls_mpi_init(&TQ); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&I); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&C); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* End of MPI initialization */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&T, input, ctx->len)); | 
					
						
							|  |  |  |     if (mbedtls_mpi_cmp_mpi(&T, &ctx->N) >= 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&I, &T)); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Blinding | 
					
						
							|  |  |  |          * T = T * Vi mod N | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(rsa_prepare_blinding(ctx, f_rng, p_rng)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&T, &T, &ctx->Vi)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&T, &T, &ctx->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Exponent blinding | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_int(&P1, &ctx->P, 1)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_int(&Q1, &ctx->Q, 1)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * D_blind = ( P - 1 ) * ( Q - 1 ) * R + D | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, | 
					
						
							|  |  |  |                                                 f_rng, p_rng)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&D_blind, &P1, &Q1)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&D_blind, &D_blind, &R)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&D_blind, &D_blind, &ctx->D)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         D = &D_blind; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * DP_blind = ( P - 1 ) * R + DP | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, | 
					
						
							|  |  |  |                                                 f_rng, p_rng)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&DP_blind, &P1, &R)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&DP_blind, &DP_blind, | 
					
						
							|  |  |  |                                             &ctx->DP)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         DP = &DP_blind; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * DQ_blind = ( Q - 1 ) * R + DQ | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, | 
					
						
							|  |  |  |                                                 f_rng, p_rng)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&DQ_blind, &Q1, &R)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&DQ_blind, &DQ_blind, | 
					
						
							|  |  |  |                                             &ctx->DQ)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         DQ = &DQ_blind; | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&T, &T, D, &ctx->N, &ctx->RN)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Faster decryption using the CRT | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |      * TP = input ^ dP mod P | 
					
						
							|  |  |  |      * TQ = input ^ dQ mod Q | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&TP, &T, DP, &ctx->P, &ctx->RP)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&TQ, &T, DQ, &ctx->Q, &ctx->RQ)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |      * T = (TP - TQ) * (Q^-1 mod P) mod P | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&T, &TP, &TQ)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&TP, &T, &ctx->QP)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&T, &TP, &ctx->P)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |      * T = TQ + T * Q | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&TP, &T, &ctx->Q)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&T, &TQ, &TP)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Unblind | 
					
						
							|  |  |  |          * T = T * Vf mod N | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&T, &T, &ctx->Vf)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&T, &T, &ctx->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |     /* Verify the result to prevent glitching attacks. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_exp_mod(&C, &T, &ctx->E, | 
					
						
							|  |  |  |                                         &ctx->N, &ctx->RN)); | 
					
						
							|  |  |  |     if (mbedtls_mpi_cmp_mpi(&C, &I) != 0) { | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     olen = ctx->len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&T, output, olen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mutex_unlock(&ctx->mutex) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_THREADING_MUTEX_ERROR; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&P1); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&Q1); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&R); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_free(&D_blind); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_mpi_free(&DP_blind); | 
					
						
							|  |  |  |         mbedtls_mpi_free(&DQ_blind); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&T); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&TP); mbedtls_mpi_free(&TQ); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&C); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&I); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0 && ret >= -0x007f) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_PRIVATE_FAILED, ret); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Generate and apply the MGF1 operation (from PKCS#1 v2.1) to a buffer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \param dst       buffer to mask | 
					
						
							|  |  |  |  * \param dlen      length of destination buffer | 
					
						
							|  |  |  |  * \param src       source of the mask generation | 
					
						
							|  |  |  |  * \param slen      length of the source buffer | 
					
						
							|  |  |  |  * \param md_ctx    message digest context to use | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int mgf_mask(unsigned char *dst, size_t dlen, unsigned char *src, | 
					
						
							|  |  |  |                     size_t slen, mbedtls_md_context_t *md_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char mask[MBEDTLS_MD_MAX_SIZE]; | 
					
						
							|  |  |  |     unsigned char counter[4]; | 
					
						
							|  |  |  |     unsigned char *p; | 
					
						
							|  |  |  |     unsigned int hlen; | 
					
						
							|  |  |  |     size_t i, use_len; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(mask, 0, MBEDTLS_MD_MAX_SIZE); | 
					
						
							|  |  |  |     memset(counter, 0, 4); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hlen = mbedtls_md_get_size(md_ctx->md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Generate and apply dbMask */ | 
					
						
							|  |  |  |     p = dst; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (dlen > 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         use_len = hlen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (dlen < hlen) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             use_len = dlen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_md_starts(md_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md_update(md_ctx, src, slen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md_update(md_ctx, counter, 4)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md_finish(md_ctx, mask)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         for (i = 0; i < use_len; ++i) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             *p++ ^= mask[i]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         counter[3]++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         dlen -= use_len; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(mask, sizeof(mask)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V21 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSAES-OAEP-ENCRYPT function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsaes_oaep_encrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                    int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                    void *p_rng, | 
					
						
							|  |  |  |                                    int mode, | 
					
						
							|  |  |  |                                    const unsigned char *label, size_t label_len, | 
					
						
							|  |  |  |                                    size_t ilen, | 
					
						
							|  |  |  |                                    const unsigned char *input, | 
					
						
							|  |  |  |                                    unsigned char *output) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t olen; | 
					
						
							| 
									
										
										
										
											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 *p = output; | 
					
						
							|  |  |  |     unsigned int hlen; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(ilen == 0 || input != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(label_len == 0 || label != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_info = mbedtls_md_info_from_type((mbedtls_md_type_t) ctx->hash_id); | 
					
						
							|  |  |  |     if (md_info == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     olen = ctx->len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* first comparison checks for overflow */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen + 2 * hlen + 2 < ilen || olen < ilen + 2 * hlen + 2) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(output, 0, olen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *p++ = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Generate a random octet string seed */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = f_rng(p_rng, p, hlen)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_RNG_FAILED, ret); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p += hlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Construct DB */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md(md_info, label, label_len, p)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += hlen; | 
					
						
							|  |  |  |     p += olen - 2 * hlen - 2 - ilen; | 
					
						
							|  |  |  |     *p++ = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen != 0) { | 
					
						
							|  |  |  |         memcpy(p, input, ilen); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 0)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* maskedDB: Apply dbMask to DB */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mgf_mask(output + hlen + 1, olen - hlen - 1, output + 1, hlen, | 
					
						
							|  |  |  |                         &md_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* maskedSeed: Apply seedMask to seed */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mgf_mask(output + 1, hlen, output + hlen + 1, olen - hlen - 1, | 
					
						
							|  |  |  |                         &md_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |             ? mbedtls_rsa_public(ctx, output, output) | 
					
						
							|  |  |  |             : mbedtls_rsa_private(ctx, f_rng, p_rng, output, output); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V21 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSAES-PKCS1-V1_5-ENCRYPT function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsaes_pkcs1_v15_encrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                         int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                         void *p_rng, | 
					
						
							|  |  |  |                                         int mode, size_t ilen, | 
					
						
							|  |  |  |                                         const unsigned char *input, | 
					
						
							|  |  |  |                                         unsigned char *output) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t nb_pad, olen; | 
					
						
							| 
									
										
										
										
											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 *p = output; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(ilen == 0 || input != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     olen = ctx->len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* first comparison checks for overflow */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen + 11 < ilen || olen < ilen + 11) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     nb_pad = olen - 3 - ilen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *p++ = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PUBLIC) { | 
					
						
							|  |  |  |         if (f_rng == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *p++ = MBEDTLS_RSA_CRYPT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         while (nb_pad-- > 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             int rng_dl = 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             do { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 ret = f_rng(p_rng, p, 1); | 
					
						
							|  |  |  |             } while (*p == 0 && --rng_dl && ret == 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Check if RNG failed to generate data */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (rng_dl == 0 || ret != 0) { | 
					
						
							|  |  |  |                 return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_RNG_FAILED, ret); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             p++; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *p++ = MBEDTLS_RSA_SIGN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         while (nb_pad-- > 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             *p++ = 0xFF; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *p++ = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen != 0) { | 
					
						
							|  |  |  |         memcpy(p, input, ilen); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |             ? mbedtls_rsa_public(ctx, output, output) | 
					
						
							|  |  |  |             : mbedtls_rsa_private(ctx, f_rng, p_rng, output, output); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Add the message padding, then do an RSA operation | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_pkcs1_encrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                               int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                               void *p_rng, | 
					
						
							|  |  |  |                               int mode, size_t ilen, | 
					
						
							|  |  |  |                               const unsigned char *input, | 
					
						
							|  |  |  |                               unsigned char *output) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(ilen == 0 || input != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (ctx->padding) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V15: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsaes_pkcs1_v15_encrypt(ctx, f_rng, p_rng, mode, ilen, | 
					
						
							|  |  |  |                                                        input, output); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V21: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsaes_oaep_encrypt(ctx, f_rng, p_rng, mode, NULL, 0, | 
					
						
							|  |  |  |                                                   ilen, input, output); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSAES-OAEP-DECRYPT function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsaes_oaep_decrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                    int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                    void *p_rng, | 
					
						
							|  |  |  |                                    int mode, | 
					
						
							|  |  |  |                                    const unsigned char *label, size_t label_len, | 
					
						
							|  |  |  |                                    size_t *olen, | 
					
						
							|  |  |  |                                    const unsigned char *input, | 
					
						
							|  |  |  |                                    unsigned char *output, | 
					
						
							|  |  |  |                                    size_t output_max_len) | 
					
						
							| 
									
										
										
										
											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 ilen, i, pad_len; | 
					
						
							|  |  |  |     unsigned char *p, bad, pad_done; | 
					
						
							|  |  |  |     unsigned char buf[MBEDTLS_MPI_MAX_SIZE]; | 
					
						
							|  |  |  |     unsigned char lhash[MBEDTLS_MD_MAX_SIZE]; | 
					
						
							|  |  |  |     unsigned int hlen; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output_max_len == 0 || output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(label_len == 0 || label != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(input != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(olen != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Parameters sanity checks | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ilen = ctx->len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen < 16 || ilen > sizeof(buf)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_info = mbedtls_md_info_from_type((mbedtls_md_type_t) ctx->hash_id); | 
					
						
							|  |  |  |     if (md_info == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // checking for integer underflow
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (2 * hlen + 2 > ilen) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * RSA operation | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |           ? mbedtls_rsa_public(ctx, input, buf) | 
					
						
							|  |  |  |           : mbedtls_rsa_private(ctx, f_rng, p_rng, input, buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Unmask data and generate lHash | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 0)) != 0) { | 
					
						
							|  |  |  |         mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* seed: Apply seedMask to maskedSeed */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mgf_mask(buf + 1, hlen, buf + hlen + 1, ilen - hlen - 1, | 
					
						
							|  |  |  |                         &md_ctx)) != 0 || | 
					
						
							|  |  |  |         /* DB: Apply dbMask to maskedDB */ | 
					
						
							|  |  |  |         (ret = mgf_mask(buf + hlen + 1, ilen - hlen - 1, buf + 1, hlen, | 
					
						
							|  |  |  |                         &md_ctx)) != 0) { | 
					
						
							|  |  |  |         mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Generate lHash */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md(md_info, label, label_len, lhash)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Check contents, in "constant-time" | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     p = buf; | 
					
						
							|  |  |  |     bad = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bad |= *p++; /* First byte must be 0 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p += hlen; /* Skip seed */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check lHash */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < hlen; i++) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         bad |= lhash[i] ^ *p++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Get zero-padding len, but always read till end of buffer
 | 
					
						
							|  |  |  |      * (minus one, for the 01 byte) */ | 
					
						
							|  |  |  |     pad_len = 0; | 
					
						
							|  |  |  |     pad_done = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < ilen - 2 * hlen - 2; i++) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         pad_done |= p[i]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         pad_len += ((pad_done | (unsigned char) -pad_done) >> 7) ^ 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p += pad_len; | 
					
						
							|  |  |  |     bad |= *p++ ^ 0x01; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * The only information "leaked" is whether the padding was correct or not | 
					
						
							|  |  |  |      * (eg, no data is copied if it was not correct). This meets the | 
					
						
							|  |  |  |      * recommendations in PKCS#1 v2.2: an opponent cannot distinguish between | 
					
						
							|  |  |  |      * the different error conditions. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (bad != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen - (p - buf) > output_max_len) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *olen = ilen - (p - buf); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (*olen != 0) { | 
					
						
							|  |  |  |         memcpy(output, p, *olen); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(buf, sizeof(buf)); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(lhash, sizeof(lhash)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V21 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSAES-PKCS1-V1_5-DECRYPT function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsaes_pkcs1_v15_decrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                         int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                         void *p_rng, | 
					
						
							|  |  |  |                                         int mode, | 
					
						
							|  |  |  |                                         size_t *olen, | 
					
						
							|  |  |  |                                         const unsigned char *input, | 
					
						
							|  |  |  |                                         unsigned char *output, | 
					
						
							|  |  |  |                                         size_t output_max_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     size_t ilen; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char buf[MBEDTLS_MPI_MAX_SIZE]; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output_max_len == 0 || output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(input != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(olen != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ilen = ctx->len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ilen < 16 || ilen > sizeof(buf)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |           ? mbedtls_rsa_public(ctx, input, buf) | 
					
						
							|  |  |  |           : mbedtls_rsa_private(ctx, f_rng, p_rng, input, buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_ct_rsaes_pkcs1_v15_unpadding(mode, buf, ilen, | 
					
						
							|  |  |  |                                                output, output_max_len, olen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(buf, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA operation, then remove the message padding | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_pkcs1_decrypt(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                               int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                               void *p_rng, | 
					
						
							|  |  |  |                               int mode, size_t *olen, | 
					
						
							|  |  |  |                               const unsigned char *input, | 
					
						
							|  |  |  |                               unsigned char *output, | 
					
						
							|  |  |  |                               size_t output_max_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(output_max_len == 0 || output != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(input != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(olen != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (ctx->padding) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V15: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsaes_pkcs1_v15_decrypt(ctx, f_rng, p_rng, mode, olen, | 
					
						
							|  |  |  |                                                        input, output, output_max_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V21: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsaes_oaep_decrypt(ctx, f_rng, p_rng, mode, NULL, 0, | 
					
						
							|  |  |  |                                                   olen, input, output, | 
					
						
							|  |  |  |                                                   output_max_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int rsa_rsassa_pss_sign(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                void *p_rng, | 
					
						
							|  |  |  |                                int mode, | 
					
						
							|  |  |  |                                mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                unsigned int hashlen, | 
					
						
							|  |  |  |                                const unsigned char *hash, | 
					
						
							|  |  |  |                                int saltlen, | 
					
						
							|  |  |  |                                unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t olen; | 
					
						
							|  |  |  |     unsigned char *p = sig; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char *salt = NULL; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     size_t slen, min_slen, hlen, offset = 0; | 
					
						
							| 
									
										
										
										
											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 msb; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     olen = ctx->len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (md_alg != MBEDTLS_MD_NONE) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Gather length of hash to sign */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         md_info = mbedtls_md_info_from_type(md_alg); | 
					
						
							|  |  |  |         if (md_info == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         hashlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_info = mbedtls_md_info_from_type((mbedtls_md_type_t) ctx->hash_id); | 
					
						
							|  |  |  |     if (md_info == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (saltlen == MBEDTLS_RSA_SALT_LEN_ANY) { | 
					
						
							|  |  |  |         /* Calculate the largest possible salt length, up to the hash size.
 | 
					
						
							|  |  |  |          * Normally this is the hash length, which is the maximum salt length | 
					
						
							|  |  |  |          * according to FIPS 185-4 §5.5 (e) and common practice. If there is not | 
					
						
							|  |  |  |          * enough room, use the maximum salt length that fits. The constraint is | 
					
						
							|  |  |  |          * that the hash length plus the salt length plus 2 bytes must be at most | 
					
						
							|  |  |  |          * the key length. This complies with FIPS 186-4 §5.5 (e) and RFC 8017 | 
					
						
							|  |  |  |          * (PKCS#1 v2.2) §9.1.1 step 3. */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         min_slen = hlen - 2; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (olen < hlen + min_slen + 2) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } else if (olen >= hlen + hlen + 2) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             slen = hlen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             slen = olen - hlen - 2; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else if ((saltlen < 0) || (saltlen + hlen + 2 > olen)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         slen = (size_t) saltlen; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(sig, 0, olen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Note: EMSA-PSS encoding is over the length of N - 1 bits */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     msb = mbedtls_mpi_bitlen(&ctx->N) - 1; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     p += olen - hlen - slen - 2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *p++ = 0x01; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Generate salt of length slen in place in the encoded message */ | 
					
						
							|  |  |  |     salt = p; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = f_rng(p_rng, salt, slen)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_RSA_RNG_FAILED, ret); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += slen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 0)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Generate H = Hash( M' ) */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_starts(&md_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_update(&md_ctx, p, 8)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_update(&md_ctx, hash, hashlen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_update(&md_ctx, salt, slen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_finish(&md_ctx, p)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Compensate for boundary condition when applying mask */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (msb % 8 == 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         offset = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* maskedDB: Apply dbMask to DB */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mgf_mask(sig + offset, olen - hlen - 1 - offset, p, hlen, | 
					
						
							|  |  |  |                         &md_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     msb = mbedtls_mpi_bitlen(&ctx->N) - 1; | 
					
						
							|  |  |  |     sig[0] &= 0xFF >> (olen * 8 - msb); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p += hlen; | 
					
						
							|  |  |  |     *p++ = 0xBC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |             ? mbedtls_rsa_public(ctx, sig, sig) | 
					
						
							|  |  |  |             : mbedtls_rsa_private(ctx, f_rng, p_rng, sig, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSASSA-PSS-SIGN function with | 
					
						
							|  |  |  |  * the option to pass in the salt length. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pss_sign_ext(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                     int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                     void *p_rng, | 
					
						
							|  |  |  |                                     mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                     unsigned int hashlen, | 
					
						
							|  |  |  |                                     const unsigned char *hash, | 
					
						
							|  |  |  |                                     int saltlen, | 
					
						
							|  |  |  |                                     unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return rsa_rsassa_pss_sign(ctx, f_rng, p_rng, MBEDTLS_RSA_PRIVATE, md_alg, | 
					
						
							|  |  |  |                                hashlen, hash, saltlen, sig); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSASSA-PSS-SIGN function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pss_sign(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                 int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                 void *p_rng, | 
					
						
							|  |  |  |                                 int mode, | 
					
						
							|  |  |  |                                 mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                 unsigned int hashlen, | 
					
						
							|  |  |  |                                 const unsigned char *hash, | 
					
						
							|  |  |  |                                 unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return rsa_rsassa_pss_sign(ctx, f_rng, p_rng, mode, md_alg, | 
					
						
							|  |  |  |                                hashlen, hash, MBEDTLS_RSA_SALT_LEN_ANY, sig); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_PKCS1_V21 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSASSA-PKCS1-V1_5-SIGN function | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Construct a PKCS v1.5 encoding of a hashed message
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is used both for signature generation and verification. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Parameters: | 
					
						
							|  |  |  |  * - md_alg:  Identifies the hash algorithm used to generate the given hash; | 
					
						
							|  |  |  |  *            MBEDTLS_MD_NONE if raw data is signed. | 
					
						
							|  |  |  |  * - hashlen: Length of hash in case hashlen is MBEDTLS_MD_NONE. | 
					
						
							|  |  |  |  * - hash:    Buffer containing the hashed message or the raw data. | 
					
						
							|  |  |  |  * - dst_len: Length of the encoded message. | 
					
						
							|  |  |  |  * - dst:     Buffer to hold the encoded message. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Assumptions: | 
					
						
							|  |  |  |  * - hash has size hashlen if md_alg == MBEDTLS_MD_NONE. | 
					
						
							|  |  |  |  * - hash has size corresponding to md_alg if md_alg != MBEDTLS_MD_NONE. | 
					
						
							|  |  |  |  * - dst points to a buffer of size at least dst_len. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int rsa_rsassa_pkcs1_v15_encode(mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                        unsigned int hashlen, | 
					
						
							|  |  |  |                                        const unsigned char *hash, | 
					
						
							|  |  |  |                                        size_t dst_len, | 
					
						
							|  |  |  |                                        unsigned char *dst) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t oid_size  = 0; | 
					
						
							|  |  |  |     size_t nb_pad    = dst_len; | 
					
						
							|  |  |  |     unsigned char *p = dst; | 
					
						
							|  |  |  |     const char *oid  = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Are we signing hashed or raw data? */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (md_alg != MBEDTLS_MD_NONE) { | 
					
						
							|  |  |  |         const mbedtls_md_info_t *md_info = mbedtls_md_info_from_type(md_alg); | 
					
						
							|  |  |  |         if (md_info == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mbedtls_oid_get_oid_by_md(md_alg, &oid, &oid_size) != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         hashlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Double-check that 8 + hashlen + oid_size can be used as a
 | 
					
						
							|  |  |  |          * 1-byte ASN.1 length encoding and that there's no overflow. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (8 + hashlen + oid_size  >= 0x80         || | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             10 + hashlen            <  hashlen      || | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             10 + hashlen + oid_size <  10 + hashlen) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Static bounds check: | 
					
						
							|  |  |  |          * - Need 10 bytes for five tag-length pairs. | 
					
						
							|  |  |  |          *   (Insist on 1-byte length encodings to protect against variants of | 
					
						
							|  |  |  |          *    Bleichenbacher's forgery attack against lax PKCS#1v1.5 verification) | 
					
						
							|  |  |  |          * - Need hashlen bytes for hash | 
					
						
							|  |  |  |          * - Need oid_size bytes for hash alg OID. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (nb_pad < 10 + hashlen + oid_size) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         nb_pad -= 10 + hashlen + oid_size; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if (nb_pad < hashlen) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         nb_pad -= hashlen; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Need space for signature header and padding delimiter (3 bytes),
 | 
					
						
							|  |  |  |      * and 8 bytes for the minimal padding */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (nb_pad < 3 + 8) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     nb_pad -= 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Now nb_pad is the amount of memory to be filled
 | 
					
						
							|  |  |  |      * with padding, and at least 8 bytes long. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Write signature header and padding */ | 
					
						
							|  |  |  |     *p++ = 0; | 
					
						
							|  |  |  |     *p++ = MBEDTLS_RSA_SIGN; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(p, 0xFF, nb_pad); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += nb_pad; | 
					
						
							|  |  |  |     *p++ = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Are we signing raw data? */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (md_alg == MBEDTLS_MD_NONE) { | 
					
						
							|  |  |  |         memcpy(p, hash, hashlen); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Signing hashed data, add corresponding ASN.1 structure
 | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * DigestInfo ::= SEQUENCE { | 
					
						
							|  |  |  |      *   digestAlgorithm DigestAlgorithmIdentifier, | 
					
						
							|  |  |  |      *   digest Digest } | 
					
						
							|  |  |  |      * DigestAlgorithmIdentifier ::= AlgorithmIdentifier | 
					
						
							|  |  |  |      * Digest ::= OCTET STRING | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Schematic: | 
					
						
							|  |  |  |      * TAG-SEQ + LEN [ TAG-SEQ + LEN [ TAG-OID  + LEN [ OID  ] | 
					
						
							|  |  |  |      *                                 TAG-NULL + LEN [ NULL ] ] | 
					
						
							|  |  |  |      *                 TAG-OCTET + LEN [ HASH ] ] | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     *p++ = MBEDTLS_ASN1_SEQUENCE | MBEDTLS_ASN1_CONSTRUCTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     *p++ = (unsigned char) (0x08 + oid_size + hashlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *p++ = MBEDTLS_ASN1_SEQUENCE | MBEDTLS_ASN1_CONSTRUCTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     *p++ = (unsigned char) (0x04 + oid_size); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *p++ = MBEDTLS_ASN1_OID; | 
					
						
							|  |  |  |     *p++ = (unsigned char) oid_size; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(p, oid, oid_size); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += oid_size; | 
					
						
							|  |  |  |     *p++ = MBEDTLS_ASN1_NULL; | 
					
						
							|  |  |  |     *p++ = 0x00; | 
					
						
							|  |  |  |     *p++ = MBEDTLS_ASN1_OCTET_STRING; | 
					
						
							|  |  |  |     *p++ = (unsigned char) hashlen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(p, hash, hashlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += hashlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Just a sanity-check, should be automatic
 | 
					
						
							|  |  |  |      * after the initial bounds check. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (p != dst + dst_len) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(dst, dst_len); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA operation to sign the message digest | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pkcs1_v15_sign(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                       int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                       void *p_rng, | 
					
						
							|  |  |  |                                       int mode, | 
					
						
							|  |  |  |                                       mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                       unsigned int hashlen, | 
					
						
							|  |  |  |                                       const unsigned char *hash, | 
					
						
							|  |  |  |                                       unsigned char *sig) | 
					
						
							| 
									
										
										
										
											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 *sig_try = NULL, *verif = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Prepare PKCS1-v1.5 encoding (padding and hash identifier) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = rsa_rsassa_pkcs1_v15_encode(md_alg, hashlen, hash, | 
					
						
							|  |  |  |                                            ctx->len, sig)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Call respective RSA primitive | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PUBLIC) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Skip verification on a public key operation */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return mbedtls_rsa_public(ctx, sig, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Private key operation
 | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * In order to prevent Lenstra's attack, make the signature in a | 
					
						
							|  |  |  |      * temporary buffer and check it before returning it. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     sig_try = mbedtls_calloc(1, ctx->len); | 
					
						
							|  |  |  |     if (sig_try == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_MPI_ALLOC_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     verif = mbedtls_calloc(1, ctx->len); | 
					
						
							|  |  |  |     if (verif == NULL) { | 
					
						
							|  |  |  |         mbedtls_free(sig_try); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_MPI_ALLOC_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_private(ctx, f_rng, p_rng, sig, sig_try)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_public(ctx, sig_try, verif)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ct_memcmp(verif, sig, ctx->len) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_PRIVATE_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(sig, sig_try, ctx->len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(sig_try, ctx->len); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(verif, ctx->len); | 
					
						
							|  |  |  |     mbedtls_free(sig_try); | 
					
						
							|  |  |  |     mbedtls_free(verif); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         memset(sig, '!', ctx->len); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA operation to sign the message digest | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_pkcs1_sign(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                            int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                            void *p_rng, | 
					
						
							|  |  |  |                            int mode, | 
					
						
							|  |  |  |                            mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                            unsigned int hashlen, | 
					
						
							|  |  |  |                            const unsigned char *hash, | 
					
						
							|  |  |  |                            unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (ctx->padding) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V15: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsassa_pkcs1_v15_sign(ctx, f_rng, p_rng, mode, md_alg, | 
					
						
							|  |  |  |                                                      hashlen, hash, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V21: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsassa_pss_sign(ctx, f_rng, p_rng, mode, md_alg, | 
					
						
							|  |  |  |                                                hashlen, hash, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSASSA-PSS-VERIFY function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pss_verify_ext(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                       int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                       void *p_rng, | 
					
						
							|  |  |  |                                       int mode, | 
					
						
							|  |  |  |                                       mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                       unsigned int hashlen, | 
					
						
							|  |  |  |                                       const unsigned char *hash, | 
					
						
							|  |  |  |                                       mbedtls_md_type_t mgf1_hash_id, | 
					
						
							|  |  |  |                                       int expected_salt_len, | 
					
						
							|  |  |  |                                       const unsigned char *sig) | 
					
						
							| 
									
										
										
										
											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 siglen; | 
					
						
							|  |  |  |     unsigned char *p; | 
					
						
							|  |  |  |     unsigned char *hash_start; | 
					
						
							|  |  |  |     unsigned char result[MBEDTLS_MD_MAX_SIZE]; | 
					
						
							|  |  |  |     unsigned char zeros[8]; | 
					
						
							|  |  |  |     unsigned int hlen; | 
					
						
							|  |  |  |     size_t observed_salt_len, msb; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							|  |  |  |     unsigned char buf[MBEDTLS_MPI_MAX_SIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     siglen = ctx->len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (siglen < 16 || siglen > sizeof(buf)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |           ? mbedtls_rsa_public(ctx, sig, buf) | 
					
						
							|  |  |  |           : mbedtls_rsa_private(ctx, f_rng, p_rng, sig, buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p = buf; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (buf[siglen - 1] != 0xBC) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (md_alg != MBEDTLS_MD_NONE) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Gather length of hash to sign */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         md_info = mbedtls_md_info_from_type(md_alg); | 
					
						
							|  |  |  |         if (md_info == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         hashlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_info = mbedtls_md_info_from_type(mgf1_hash_id); | 
					
						
							|  |  |  |     if (md_info == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(zeros, 0, 8); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Note: EMSA-PSS verification is over the length of N - 1 bits | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     msb = mbedtls_mpi_bitlen(&ctx->N) - 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (buf[0] >> (8 - siglen * 8 + msb)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Compensate for boundary condition when applying mask */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (msb % 8 == 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         p++; | 
					
						
							|  |  |  |         siglen -= 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (siglen < hlen + 2) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     hash_start = p + siglen - hlen - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							|  |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 0)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mgf_mask(p, siglen - hlen - 1, hash_start, hlen, &md_ctx); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     buf[0] &= 0xFF >> (siglen * 8 - msb); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (p < hash_start - 1 && *p == 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         p++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (*p++ != 0x01) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     observed_salt_len = hash_start - p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (expected_salt_len != MBEDTLS_RSA_SALT_LEN_ANY && | 
					
						
							|  |  |  |         observed_salt_len != (size_t) expected_salt_len) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Generate H = Hash( M' ) | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_starts(&md_ctx); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_update(&md_ctx, zeros, 8); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_update(&md_ctx, hash, hashlen); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_update(&md_ctx, p, observed_salt_len); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_finish(&md_ctx, result); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (memcmp(hash_start, result, hlen) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Simplified PKCS#1 v2.1 RSASSA-PSS-VERIFY function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pss_verify(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                   int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                   void *p_rng, | 
					
						
							|  |  |  |                                   int mode, | 
					
						
							|  |  |  |                                   mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                   unsigned int hashlen, | 
					
						
							|  |  |  |                                   const unsigned char *hash, | 
					
						
							|  |  |  |                                   const unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_md_type_t mgf1_hash_id; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mgf1_hash_id = (ctx->hash_id != MBEDTLS_MD_NONE) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                              ? (mbedtls_md_type_t) ctx->hash_id | 
					
						
							|  |  |  |                              : md_alg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_rsa_rsassa_pss_verify_ext(ctx, f_rng, p_rng, mode, | 
					
						
							|  |  |  |                                              md_alg, hashlen, hash, | 
					
						
							|  |  |  |                                              mgf1_hash_id, MBEDTLS_RSA_SALT_LEN_ANY, | 
					
						
							|  |  |  |                                              sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V21 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Implementation of the PKCS#1 v2.1 RSASSA-PKCS1-v1_5-VERIFY function | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_rsassa_pkcs1_v15_verify(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                                         int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                         void *p_rng, | 
					
						
							|  |  |  |                                         int mode, | 
					
						
							|  |  |  |                                         mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                         unsigned int hashlen, | 
					
						
							|  |  |  |                                         const unsigned char *hash, | 
					
						
							|  |  |  |                                         const unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     size_t sig_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char *encoded = NULL, *encoded_expected = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     sig_len = ctx->len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_RSA_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Prepare expected PKCS1 v1.5 encoding of hash. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((encoded          = mbedtls_calloc(1, sig_len)) == NULL || | 
					
						
							|  |  |  |         (encoded_expected = mbedtls_calloc(1, sig_len)) == NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_MPI_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = rsa_rsassa_pkcs1_v15_encode(md_alg, hashlen, hash, sig_len, | 
					
						
							|  |  |  |                                            encoded_expected)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Apply RSA primitive to get what should be PKCS1 encoded hash. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = (mode == MBEDTLS_RSA_PUBLIC) | 
					
						
							|  |  |  |           ? mbedtls_rsa_public(ctx, sig, encoded) | 
					
						
							|  |  |  |           : mbedtls_rsa_private(ctx, f_rng, p_rng, sig, encoded); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Compare | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ct_memcmp(encoded, encoded_expected, | 
					
						
							|  |  |  |                                  sig_len)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_RSA_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (encoded != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(encoded, sig_len); | 
					
						
							|  |  |  |         mbedtls_free(encoded); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (encoded_expected != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(encoded_expected, sig_len); | 
					
						
							|  |  |  |         mbedtls_free(encoded_expected); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do an RSA operation and check the message digest | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_pkcs1_verify(mbedtls_rsa_context *ctx, | 
					
						
							|  |  |  |                              int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                              void *p_rng, | 
					
						
							|  |  |  |                              int mode, | 
					
						
							|  |  |  |                              mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                              unsigned int hashlen, | 
					
						
							|  |  |  |                              const unsigned char *hash, | 
					
						
							|  |  |  |                              const unsigned char *sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     RSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(mode == MBEDTLS_RSA_PRIVATE || | 
					
						
							|  |  |  |                      mode == MBEDTLS_RSA_PUBLIC); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(sig != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET((md_alg  == MBEDTLS_MD_NONE && | 
					
						
							|  |  |  |                       hashlen == 0) || | 
					
						
							|  |  |  |                      hash != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (ctx->padding) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V15: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsassa_pkcs1_v15_verify(ctx, f_rng, p_rng, mode, md_alg, | 
					
						
							|  |  |  |                                                        hashlen, hash, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V21)
 | 
					
						
							|  |  |  |         case MBEDTLS_RSA_PKCS_V21: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return mbedtls_rsa_rsassa_pss_verify(ctx, f_rng, p_rng, mode, md_alg, | 
					
						
							|  |  |  |                                                  hashlen, hash, sig); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_ERR_RSA_INVALID_PADDING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Copy the components of an RSA key | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_copy(mbedtls_rsa_context *dst, const mbedtls_rsa_context *src) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04: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
										 |  |  |     RSA_VALIDATE_RET(dst != NULL); | 
					
						
							|  |  |  |     RSA_VALIDATE_RET(src != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dst->len = src->len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->N, &src->N)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->E, &src->E)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->D, &src->D)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->P, &src->P)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->Q, &src->Q)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->DP, &src->DP)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->DQ, &src->DQ)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->QP, &src->QP)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->RP, &src->RP)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->RQ, &src->RQ)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->RN, &src->RN)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->Vi, &src->Vi)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&dst->Vf, &src->Vf)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dst->padding = src->padding; | 
					
						
							|  |  |  |     dst->hash_id = src->hash_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_rsa_free(dst); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free the components of an RSA key | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_rsa_free(mbedtls_rsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&ctx->Vi); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->Vf); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->RN); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->D); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->Q); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->P); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->E); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->N); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_RSA_NO_CRT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&ctx->RQ); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->RP); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->QP); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->DQ); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->DP); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_RSA_NO_CRT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |     /* Free the mutex, but only if it hasn't been freed already. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx->ver != 0) { | 
					
						
							|  |  |  |         mbedtls_mutex_free(&ctx->mutex); | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |         ctx->ver = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !MBEDTLS_RSA_ALT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SELF_TEST)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/sha1.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Example RSA-1024 keypair, for test purposes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define KEY_LEN 128
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_N   "9292758453063D803DD603D5E777D788" \
 | 
					
						
							|  |  |  |                 "8ED1D5BF35786190FA2F23EBC0848AEA" \ | 
					
						
							|  |  |  |                 "DDA92CA6C3D80B32C4D109BE0F36D6AE" \ | 
					
						
							|  |  |  |                 "7130B9CED7ACDF54CFC7555AC14EEBAB" \ | 
					
						
							|  |  |  |                 "93A89813FBF3C4F8066D2D800F7C38A8" \ | 
					
						
							|  |  |  |                 "1AE31942917403FF4946B0A83D3D3E05" \ | 
					
						
							|  |  |  |                 "EE57C6F5F5606FB5D4BC6CD34EE0801A" \ | 
					
						
							|  |  |  |                 "5E94BB77B07507233A0BC7BAC8F90F79" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_E   "10001"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_D   "24BF6185468786FDD303083D25E64EFC" \
 | 
					
						
							|  |  |  |                 "66CA472BC44D253102F8B4A9D3BFA750" \ | 
					
						
							|  |  |  |                 "91386C0077937FE33FA3252D28855837" \ | 
					
						
							|  |  |  |                 "AE1B484A8A9A45F7EE8C0C634F99E8CD" \ | 
					
						
							|  |  |  |                 "DF79C5CE07EE72C7F123142198164234" \ | 
					
						
							|  |  |  |                 "CABB724CF78B8173B9F880FC86322407" \ | 
					
						
							|  |  |  |                 "AF1FEDFDDE2BEB674CA15F3E81A1521E" \ | 
					
						
							|  |  |  |                 "071513A1E85B5DFA031F21ECAE91A34D" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_P   "C36D0EB7FCD285223CFB5AABA5BDA3D8" \
 | 
					
						
							|  |  |  |                 "2C01CAD19EA484A87EA4377637E75500" \ | 
					
						
							|  |  |  |                 "FCB2005C5C7DD6EC4AC023CDA285D796" \ | 
					
						
							|  |  |  |                 "C3D9E75E1EFC42488BB4F1D13AC30A57" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RSA_Q   "C000DF51A7C77AE8D7C7370C1FF55B69" \
 | 
					
						
							|  |  |  |                 "E211C2B9E5DB1ED0BF61D0D9899620F4" \ | 
					
						
							|  |  |  |                 "910E4168387E3C30AA1E00C339A79508" \ | 
					
						
							|  |  |  |                 "8452DD96A9A5EA5D9DCA68DA636032AF" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PT_LEN  24
 | 
					
						
							|  |  |  | #define RSA_PT  "\xAA\xBB\xCC\x03\x02\x01\x00\xFF\xFF\xFF\xFF\xFF" \
 | 
					
						
							|  |  |  |                 "\x11\x22\x33\x0A\x0B\x0C\xCC\xDD\xDD\xDD\xDD\xDD" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int myrand(void *rng_state, unsigned char *output, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | #if !defined(__OpenBSD__) && !defined(__NetBSD__)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rng_state != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         rng_state  = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < len; ++i) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         output[i] = rand(); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rng_state != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         rng_state = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     arc4random_buf(output, len); | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | #endif /* !OpenBSD && !NetBSD */
 | 
					
						
							| 
									
										
										
										
											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_PKCS1_V15 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Checkup routine | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_rsa_self_test(int verbose) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_PKCS1_V15)
 | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     mbedtls_rsa_context rsa; | 
					
						
							|  |  |  |     unsigned char rsa_plaintext[PT_LEN]; | 
					
						
							|  |  |  |     unsigned char rsa_decrypted[PT_LEN]; | 
					
						
							|  |  |  |     unsigned char rsa_ciphertext[KEY_LEN]; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C)
 | 
					
						
							|  |  |  |     unsigned char sha1sum[20]; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mbedtls_mpi K; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&K); | 
					
						
							|  |  |  |     mbedtls_rsa_init(&rsa, MBEDTLS_RSA_PKCS_V15, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&K, 16, RSA_N)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_import(&rsa, &K, NULL, NULL, NULL, NULL)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&K, 16, RSA_P)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_import(&rsa, NULL, &K, NULL, NULL, NULL)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&K, 16, RSA_Q)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_import(&rsa, NULL, NULL, &K, NULL, NULL)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&K, 16, RSA_D)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_import(&rsa, NULL, NULL, NULL, &K, NULL)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&K, 16, RSA_E)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_import(&rsa, NULL, NULL, NULL, NULL, &K)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_rsa_complete(&rsa)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("  RSA key validation: "); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_check_pubkey(&rsa) != 0 || | 
					
						
							|  |  |  |         mbedtls_rsa_check_privkey(&rsa) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("passed\n  PKCS#1 encryption : "); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(rsa_plaintext, RSA_PT, PT_LEN); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_pkcs1_encrypt(&rsa, myrand, NULL, MBEDTLS_RSA_PUBLIC, | 
					
						
							|  |  |  |                                   PT_LEN, rsa_plaintext, | 
					
						
							|  |  |  |                                   rsa_ciphertext) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("passed\n  PKCS#1 decryption : "); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_pkcs1_decrypt(&rsa, myrand, NULL, MBEDTLS_RSA_PRIVATE, | 
					
						
							|  |  |  |                                   &len, rsa_ciphertext, rsa_decrypted, | 
					
						
							|  |  |  |                                   sizeof(rsa_decrypted)) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (memcmp(rsa_decrypted, rsa_plaintext, len) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("passed\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("  PKCS#1 data sign  : "); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_sha1_ret(rsa_plaintext, PT_LEN, sha1sum) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_pkcs1_sign(&rsa, myrand, NULL, | 
					
						
							|  |  |  |                                MBEDTLS_RSA_PRIVATE, MBEDTLS_MD_SHA1, 0, | 
					
						
							|  |  |  |                                sha1sum, rsa_ciphertext) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("passed\n  PKCS#1 sig. verify: "); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_rsa_pkcs1_verify(&rsa, NULL, NULL, | 
					
						
							|  |  |  |                                  MBEDTLS_RSA_PUBLIC, MBEDTLS_MD_SHA1, 0, | 
					
						
							|  |  |  |                                  sha1sum, rsa_ciphertext) != 0) { | 
					
						
							|  |  |  |         if (verbose != 0) { | 
					
						
							|  |  |  |             mbedtls_printf("failed\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("passed\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SHA1_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (verbose != 0) { | 
					
						
							|  |  |  |         mbedtls_printf("\n"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&K); | 
					
						
							|  |  |  |     mbedtls_rsa_free(&rsa); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							|  |  |  |     ((void) verbose); | 
					
						
							|  |  |  | #endif /* MBEDTLS_PKCS1_V15 */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SELF_TEST */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_RSA_C */
 |