⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsa_import.c

📁 这是一个用来加解密的算法库
💻 C
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -