2011-03-25 15:07:53 +01:00
|
|
|
/*
|
2015-02-10 11:47:03 +01:00
|
|
|
* RSASSA-PSS/SHA-256 signature creation program
|
2011-03-25 15:07:53 +01:00
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-03-25 15:07:53 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02: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
|
2011-03-25 15:07:53 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-25 15:07:53 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* 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.
|
2011-03-25 15:07:53 +01:00
|
|
|
*/
|
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2023-04-07 09:10:28 +02:00
|
|
|
/* md.h is included this early since MD_CAN_XXX macros are defined there. */
|
2023-04-04 15:55:06 +02:00
|
|
|
#include "mbedtls/md.h"
|
2015-01-19 15:26:37 +01:00
|
|
|
|
2015-05-28 16:23:18 +02:00
|
|
|
#if !defined(MBEDTLS_MD_C) || !defined(MBEDTLS_ENTROPY_C) || \
|
2023-03-21 17:23:08 +01:00
|
|
|
!defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_MD_CAN_SHA256) || \
|
2015-05-28 16:23:18 +02:00
|
|
|
!defined(MBEDTLS_PK_PARSE_C) || !defined(MBEDTLS_FS_IO) || \
|
|
|
|
!defined(MBEDTLS_CTR_DRBG_C)
|
2023-01-11 14:50:10 +01:00
|
|
|
int main(void)
|
2015-05-28 16:23:18 +02:00
|
|
|
{
|
|
|
|
mbedtls_printf("MBEDTLS_MD_C and/or MBEDTLS_ENTROPY_C and/or "
|
2023-03-21 17:23:08 +01:00
|
|
|
"MBEDTLS_RSA_C and/or MBEDTLS_MD_CAN_SHA256 and/or "
|
2023-01-11 14:50:10 +01: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 16:23:18 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
|
|
|
#include "mbedtls/rsa.h"
|
2018-10-26 17:55:14 +02:00
|
|
|
#include "mbedtls/pk.h"
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-12-06 18:43:31 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int main(int argc, char *argv[])
|
2011-03-25 15:07:53 +01:00
|
|
|
{
|
|
|
|
FILE *f;
|
2014-04-17 16:02:36 +02:00
|
|
|
int ret = 1;
|
2018-04-29 21:23:38 +02:00
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context pk;
|
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
2015-08-27 21:51:44 +02:00
|
|
|
unsigned char hash[32];
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2011-03-25 15:07:53 +01:00
|
|
|
char filename[512];
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "rsa_sign_pss";
|
2013-09-17 11:39:31 +02:00
|
|
|
size_t olen = 0;
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_entropy_init(&entropy);
|
|
|
|
mbedtls_pk_init(&pk);
|
|
|
|
mbedtls_ctr_drbg_init(&ctr_drbg);
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-04-19 09:38:12 +02: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 14:50:10 +01:00
|
|
|
if (argc != 3) {
|
|
|
|
mbedtls_printf("usage: rsa_sign_pss <key_file> <filename>\n");
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n");
|
2011-03-25 15:07:53 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n . Seeding the random number generator...");
|
|
|
|
fflush(stdout);
|
2011-12-04 18:09:26 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
|
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen(pers))) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret);
|
2011-12-04 18:09:26 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n . Reading private key from '%s'", argv[1]);
|
|
|
|
fflush(stdout);
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_pk_parse_keyfile(&pk, argv[1], "",
|
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg)) != 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);
|
2011-03-25 15:07:53 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!mbedtls_pk_can_do(&pk, MBEDTLS_PK_RSA)) {
|
|
|
|
mbedtls_printf(" failed\n ! Key is not an RSA key\n");
|
2013-09-17 11:39:31 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_rsa_set_padding(mbedtls_pk_rsa(pk),
|
|
|
|
MBEDTLS_RSA_PKCS_V21,
|
|
|
|
MBEDTLS_MD_SHA256)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! Padding not supported\n");
|
2021-06-03 18:51:59 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2014-03-10 21:55:35 +01:00
|
|
|
|
2011-03-25 15:07:53 +01:00
|
|
|
/*
|
2015-02-10 11:47:03 +01:00
|
|
|
* Compute the SHA-256 hash of the input file,
|
2011-03-25 15:07:53 +01:00
|
|
|
* then calculate the RSA signature of the hash.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n . Generating 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 15:07:53 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_pk_sign(&pk, MBEDTLS_MD_SHA256, hash, 0,
|
|
|
|
buf, sizeof(buf), &olen,
|
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_pk_sign returned %d\n\n", ret);
|
2011-03-25 15:07:53 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-08-27 21:42:27 +02:00
|
|
|
* Write the signature into <filename>.sig
|
2011-03-25 15:07:53 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_snprintf(filename, 512, "%s.sig", argv[2]);
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((f = fopen(filename, "wb+")) == NULL) {
|
|
|
|
mbedtls_printf(" failed\n ! Could not create %s\n\n", filename);
|
2011-03-25 15:07:53 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (fwrite(buf, 1, olen, f) != olen) {
|
|
|
|
mbedtls_printf("failed\n ! fwrite failed\n\n");
|
|
|
|
fclose(f);
|
2011-03-25 15:07:53 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
fclose(f);
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n . Done (created \"%s\")\n\n", filename);
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2018-04-29 21:23:38 +02:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
|
|
|
|
2011-03-25 15:07:53 +01:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&pk);
|
|
|
|
mbedtls_ctr_drbg_free(&ctr_drbg);
|
|
|
|
mbedtls_entropy_free(&entropy);
|
2023-04-19 13:47:43 +02:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
2023-04-19 09:38:12 +02:00
|
|
|
mbedtls_psa_crypto_free();
|
2023-04-19 13:47:43 +02:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
2011-03-25 15:07:53 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_exit(exit_code);
|
2011-03-25 15:07:53 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_RSA_C &&
|
2023-03-21 17:23:08 +01:00
|
|
|
MBEDTLS_MD_CAN_SHA256 && MBEDTLS_PK_PARSE_C && MBEDTLS_FS_IO &&
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_CTR_DRBG_C */
|