2011-03-25 14:07:53 +00:00
|
|
|
/*
|
2015-02-10 10:47:03 +00:00
|
|
|
* RSASSA-PSS/SHA-256 signature verification program
|
2011-03-25 14:07:53 +00:00
|
|
|
*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2011-03-25 14:07:53 +00:00
|
|
|
*/
|
|
|
|
|
2021-05-27 09:25:03 +00:00
|
|
|
#include "mbedtls/build_info.h"
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/platform.h"
|
2023-04-07 07:10:28 +00:00
|
|
|
/* md.h is included this early since MD_CAN_XXX macros are defined there. */
|
2023-04-04 13:55:06 +00:00
|
|
|
#include "mbedtls/md.h"
|
2015-01-19 14:26:37 +00:00
|
|
|
|
2015-05-28 14:23:18 +00:00
|
|
|
#if !defined(MBEDTLS_MD_C) || !defined(MBEDTLS_ENTROPY_C) || \
|
2024-05-23 16:01:07 +00:00
|
|
|
!defined(MBEDTLS_RSA_C) || !defined(PSA_WANT_ALG_SHA_256) || \
|
2015-05-28 14:23:18 +00:00
|
|
|
!defined(MBEDTLS_PK_PARSE_C) || !defined(MBEDTLS_FS_IO) || \
|
|
|
|
!defined(MBEDTLS_CTR_DRBG_C)
|
2023-01-11 13:50:10 +00:00
|
|
|
int main(void)
|
2015-05-28 14:23:18 +00:00
|
|
|
{
|
|
|
|
mbedtls_printf("MBEDTLS_MD_C and/or MBEDTLS_ENTROPY_C and/or "
|
2024-05-23 16:01:07 +00:00
|
|
|
"MBEDTLS_RSA_C and/or PSA_WANT_ALG_SHA_256 and/or "
|
2023-01-11 13:50:10 +00:00
|
|
|
"MBEDTLS_PK_PARSE_C and/or MBEDTLS_FS_IO and/or "
|
|
|
|
"MBEDTLS_CTR_DRBG_C not defined.\n");
|
|
|
|
mbedtls_exit(0);
|
2015-05-28 14:23:18 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/md.h"
|
|
|
|
#include "mbedtls/pem.h"
|
|
|
|
#include "mbedtls/pk.h"
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2015-02-11 14:06:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-12-06 17:43:31 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
int main(int argc, char *argv[])
|
2011-03-25 14:07:53 +00:00
|
|
|
{
|
|
|
|
FILE *f;
|
2014-04-17 14:02:36 +00:00
|
|
|
int ret = 1;
|
2018-04-29 19:33:22 +00:00
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2011-04-24 08:57:21 +00:00
|
|
|
size_t i;
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_pk_context pk;
|
2015-08-27 19:51:44 +00:00
|
|
|
unsigned char hash[32];
|
2015-04-08 10:49:31 +00:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2011-03-25 14:07:53 +00:00
|
|
|
char filename[512];
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_pk_init(&pk);
|
2014-04-17 14:02:36 +00:00
|
|
|
|
2023-04-19 07:38:12 +00:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
psa_status_t status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
mbedtls_fprintf(stderr, "Failed to initialize PSA Crypto implementation: %d\n",
|
|
|
|
(int) status);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (argc != 3) {
|
|
|
|
mbedtls_printf("usage: rsa_verify_pss <key_file> <filename>\n");
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2011-11-18 14:26:47 +00:00
|
|
|
#if defined(_WIN32)
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_printf("\n");
|
2011-03-25 14:07:53 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_printf("\n . Reading public key from '%s'", argv[1]);
|
|
|
|
fflush(stdout);
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if ((ret = mbedtls_pk_parse_public_keyfile(&pk, argv[1])) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! Could not read key from '%s'\n", argv[1]);
|
|
|
|
mbedtls_printf(" ! mbedtls_pk_parse_public_keyfile returned %d\n\n", ret);
|
2013-09-17 09:39:31 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (!mbedtls_pk_can_do(&pk, MBEDTLS_PK_RSA)) {
|
|
|
|
mbedtls_printf(" failed\n ! Key is not an RSA key\n");
|
2011-03-25 14:07:53 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if ((ret = mbedtls_rsa_set_padding(mbedtls_pk_rsa(pk),
|
|
|
|
MBEDTLS_RSA_PKCS_V21,
|
|
|
|
MBEDTLS_MD_SHA256)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! Invalid padding\n");
|
2021-06-03 16:51:59 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
2014-03-10 20:55:35 +00:00
|
|
|
|
2011-03-25 14:07:53 +00:00
|
|
|
/*
|
2015-08-27 19:42:27 +00:00
|
|
|
* Extract the RSA signature from the file
|
2011-03-25 14:07:53 +00:00
|
|
|
*/
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_snprintf(filename, 512, "%s.sig", argv[2]);
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if ((f = fopen(filename, "rb")) == NULL) {
|
|
|
|
mbedtls_printf("\n ! Could not open %s\n\n", filename);
|
2011-03-25 14:07:53 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
i = fread(buf, 1, MBEDTLS_MPI_MAX_SIZE, f);
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
fclose(f);
|
2011-03-25 14:07:53 +00:00
|
|
|
|
|
|
|
/*
|
2015-08-27 19:59:58 +00:00
|
|
|
* Compute the SHA-256 hash of the input file and
|
|
|
|
* verify the signature
|
2011-03-25 14:07:53 +00:00
|
|
|
*/
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_printf("\n . Verifying the RSA/SHA-256 signature");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if ((ret = mbedtls_md_file(
|
|
|
|
mbedtls_md_info_from_type(MBEDTLS_MD_SHA256),
|
|
|
|
argv[2], hash)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! Could not open or read %s\n\n", argv[2]);
|
2011-03-25 14:07:53 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if ((ret = mbedtls_pk_verify(&pk, MBEDTLS_MD_SHA256, hash, 0,
|
|
|
|
buf, i)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_pk_verify returned %d\n\n", ret);
|
2011-03-25 14:07:53 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_printf("\n . OK (the signature is valid)\n\n");
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2018-04-29 19:33:22 +00:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
2011-03-25 14:07:53 +00:00
|
|
|
|
|
|
|
exit:
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_pk_free(&pk);
|
2023-04-19 11:47:43 +00:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
2023-04-19 07:38:12 +00:00
|
|
|
mbedtls_psa_crypto_free();
|
2023-04-19 11:47:43 +00:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
2011-03-25 14:07:53 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_exit(exit_code);
|
2011-03-25 14:07:53 +00:00
|
|
|
}
|
2024-05-23 16:01:07 +00:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_RSA_C && PSA_WANT_ALG_SHA_256 &&
|
2015-04-08 10:49:31 +00:00
|
|
|
MBEDTLS_PK_PARSE_C && MBEDTLS_FS_IO */
|