2024-02-27 03:09:30 -05:00
|
|
|
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
|
|
#include "tomcrypt_private.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef LTC_MRSA
|
|
|
|
|
|
|
|
/**
|
|
|
|
Import RSA key from raw numbers
|
|
|
|
|
|
|
|
@param N RSA's N
|
|
|
|
@param Nlen RSA's N's length
|
|
|
|
@param e RSA's e
|
|
|
|
@param elen RSA's e's length
|
|
|
|
@param d RSA's d (only private key, NULL for public key)
|
|
|
|
@param dlen RSA's d's length
|
|
|
|
@param key [out] the destination for the imported key
|
|
|
|
@return CRYPT_OK if successful
|
|
|
|
*/
|
|
|
|
int rsa_set_key(const unsigned char *N, unsigned long Nlen,
|
|
|
|
const unsigned char *e, unsigned long elen,
|
|
|
|
const unsigned char *d, unsigned long dlen,
|
|
|
|
rsa_key *key)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
LTC_ARGCHK(key != NULL);
|
|
|
|
LTC_ARGCHK(N != NULL);
|
|
|
|
LTC_ARGCHK(e != NULL);
|
|
|
|
LTC_ARGCHK(ltc_mp.name != NULL);
|
|
|
|
|
|
|
|
if ((err = rsa_init(key)) != CRYPT_OK) return err;
|
|
|
|
|
2025-02-20 06:23:40 -05:00
|
|
|
if ((err = mp_read_unsigned_bin(key->N , N , Nlen)) != CRYPT_OK) { goto LBL_ERR; }
|
|
|
|
if ((err = mp_read_unsigned_bin(key->e , e , elen)) != CRYPT_OK) { goto LBL_ERR; }
|
2024-02-27 03:09:30 -05:00
|
|
|
if (d && dlen) {
|
2025-02-20 06:23:40 -05:00
|
|
|
if ((err = mp_read_unsigned_bin(key->d , d , dlen)) != CRYPT_OK) { goto LBL_ERR; }
|
2024-02-27 03:09:30 -05:00
|
|
|
key->type = PK_PRIVATE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
key->type = PK_PUBLIC;
|
|
|
|
}
|
|
|
|
return CRYPT_OK;
|
|
|
|
|
|
|
|
LBL_ERR:
|
|
|
|
rsa_free(key);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Import factors of an RSA key from raw numbers
|
|
|
|
|
|
|
|
Only for private keys.
|
|
|
|
|
|
|
|
@param p RSA's p
|
|
|
|
@param plen RSA's p's length
|
|
|
|
@param q RSA's q
|
|
|
|
@param qlen RSA's q's length
|
|
|
|
@param key [out] the destination for the imported key
|
|
|
|
@return CRYPT_OK if successful
|
|
|
|
*/
|
|
|
|
int rsa_set_factors(const unsigned char *p, unsigned long plen,
|
|
|
|
const unsigned char *q, unsigned long qlen,
|
|
|
|
rsa_key *key)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
LTC_ARGCHK(key != NULL);
|
|
|
|
LTC_ARGCHK(p != NULL);
|
|
|
|
LTC_ARGCHK(q != NULL);
|
|
|
|
LTC_ARGCHK(ltc_mp.name != NULL);
|
|
|
|
|
|
|
|
if (key->type != PK_PRIVATE) return CRYPT_PK_TYPE_MISMATCH;
|
|
|
|
|
2025-02-20 06:23:40 -05:00
|
|
|
if ((err = mp_read_unsigned_bin(key->p , p , plen)) != CRYPT_OK) { goto LBL_ERR; }
|
|
|
|
if ((err = mp_read_unsigned_bin(key->q , q , qlen)) != CRYPT_OK) { goto LBL_ERR; }
|
2024-02-27 03:09:30 -05:00
|
|
|
return CRYPT_OK;
|
|
|
|
|
|
|
|
LBL_ERR:
|
|
|
|
rsa_free(key);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Import CRT parameters of an RSA key from raw numbers
|
|
|
|
|
|
|
|
Only for private keys.
|
|
|
|
|
|
|
|
@param dP RSA's dP
|
|
|
|
@param dPlen RSA's dP's length
|
|
|
|
@param dQ RSA's dQ
|
|
|
|
@param dQlen RSA's dQ's length
|
|
|
|
@param qP RSA's qP
|
|
|
|
@param qPlen RSA's qP's length
|
|
|
|
@param key [out] the destination for the imported key
|
|
|
|
@return CRYPT_OK if successful
|
|
|
|
*/
|
|
|
|
int rsa_set_crt_params(const unsigned char *dP, unsigned long dPlen,
|
|
|
|
const unsigned char *dQ, unsigned long dQlen,
|
|
|
|
const unsigned char *qP, unsigned long qPlen,
|
|
|
|
rsa_key *key)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
LTC_ARGCHK(key != NULL);
|
|
|
|
LTC_ARGCHK(dP != NULL);
|
|
|
|
LTC_ARGCHK(dQ != NULL);
|
|
|
|
LTC_ARGCHK(qP != NULL);
|
|
|
|
LTC_ARGCHK(ltc_mp.name != NULL);
|
|
|
|
|
|
|
|
if (key->type != PK_PRIVATE) return CRYPT_PK_TYPE_MISMATCH;
|
|
|
|
|
2025-02-20 06:23:40 -05:00
|
|
|
if ((err = mp_read_unsigned_bin(key->dP, dP, dPlen)) != CRYPT_OK) { goto LBL_ERR; }
|
|
|
|
if ((err = mp_read_unsigned_bin(key->dQ, dQ, dQlen)) != CRYPT_OK) { goto LBL_ERR; }
|
|
|
|
if ((err = mp_read_unsigned_bin(key->qP, qP, qPlen)) != CRYPT_OK) { goto LBL_ERR; }
|
2024-02-27 03:09:30 -05:00
|
|
|
return CRYPT_OK;
|
|
|
|
|
|
|
|
LBL_ERR:
|
|
|
|
rsa_free(key);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LTC_MRSA */
|