rsa_import.c

来自「这是一个用来加解密的算法库」· C语言 代码 · 共 84 行

C
84
字号
/* LibTomCrypt, modular cryptographic library -- Tom St Denis * * LibTomCrypt is a library that provides various cryptographic * algorithms in a highly modular and flexible manner. * * The library is free for all purposes without any express * guarantee it works. * * Tom St Denis, tomstdenis@iahu.ca, http://libtomcrypt.org */#include "tomcrypt.h"/**  @file rsa_import.c  Import a PKCS RSA key, Tom St Denis*/  #ifdef MRSA/**  Import an RSAPublicKey or RSAPrivateKey [two-prime only, defined in PKCS #1 v2.1]  @param in      The packet to import from  @param inlen   It's length (octets)  @param key     [out] Destination for newly imported key  @return CRYPT_OK if successful, upon error allocated memory is freed*/int rsa_import(const unsigned char *in, unsigned long inlen, rsa_key *key){   unsigned long x;   int err;   LTC_ARGCHK(in  != NULL);   LTC_ARGCHK(key != NULL);   /* init key */   if ((err = mp_init_multi(&key->e, &key->d, &key->N, &key->dQ, &key->dP, &key->qP,                     &key->p, &key->q, NULL)) != MP_OKAY) {      return mpi_to_ltc_error(err);   }   /* read first number, it's either N or 0 [0 == private key] */   x = inlen;   if ((err = der_get_multi_integer(in, &x, &key->N, NULL)) != CRYPT_OK) {      goto LBL_ERR;   }   /* advance */   inlen -= x;   in    += x;   if (mp_cmp_d(&key->N, 0) == MP_EQ) {      /* it's a private key */      if ((err = der_get_multi_integer(in, &inlen, &key->N, &key->e,                          &key->d, &key->p, &key->q, &key->dP,                          &key->dQ, &key->qP, NULL)) != CRYPT_OK) {         goto LBL_ERR;      }      key->type = PK_PRIVATE;   } else if (mp_cmp_d(&key->N, 1) == MP_EQ) {      /* we don't support multi-prime RSA */      err = CRYPT_PK_INVALID_TYPE;      goto LBL_ERR;   } else {      /* it's a public key and we lack e */      if ((err = der_get_multi_integer(in, &inlen, &key->e, NULL)) != CRYPT_OK) {         goto LBL_ERR;      }      /* free up some ram */      mp_clear_multi(&key->p, &key->q, &key->qP, &key->dP, &key->dQ, NULL);      key->type = PK_PUBLIC;   }   return CRYPT_OK;LBL_ERR:   mp_clear_multi(&key->d, &key->e, &key->N, &key->dQ, &key->dP,                  &key->qP, &key->p, &key->q, NULL);   return err;}#endif /* MRSA */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?