Searched refs:iqmp (Results 1 - 25 of 49) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/fips/rsa/
H A Dfips_rsa_selftest.c66 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
123 static unsigned char iqmp[] = local
H A Dfips_rsa_gen.c223 rsa->iqmp=BN_mod_inverse(NULL,rsa->q,rsa->p,ctx2);
224 if (rsa->iqmp == NULL) goto err;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/rsa/
H A Drsa_test.c28 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
68 static unsigned char iqmp[] = local
113 static unsigned char iqmp[] = local
178 static unsigned char iqmp[] = local
H A Drsa_asn1.c100 ASN1_SIMPLE(RSA, iqmp, BIGNUM)
H A Drsa_chk.c131 if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL)
161 /* iqmp = q^-1 mod p? */
168 if (BN_cmp(i, key->iqmp) != 0)
H A Drsa_gen.c177 rsa->iqmp=BN_mod_inverse(NULL,rsa->q,rsa->p,ctx2);
178 if (rsa->iqmp == NULL) goto err;
H A Drsa_lib.c176 ret->iqmp=NULL;
233 if (r->iqmp != NULL) BN_clear_free(r->iqmp);
384 t[5]= &r->iqmp;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/test/
H A Drsa_test.c28 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
68 static unsigned char iqmp[] = local
113 static unsigned char iqmp[] = local
178 static unsigned char iqmp[] = local
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/rsa/
H A Drsa_test.c29 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
69 static unsigned char iqmp[] = local
114 static unsigned char iqmp[] = local
179 static unsigned char iqmp[] = local
H A Drsa_gen.c111 if(!rsa->iqmp && ((rsa->iqmp=BN_new()) == NULL)) goto err;
177 if (!BN_mod_inverse(rsa->iqmp,rsa->q,rsa->p,ctx)) goto err;
H A Drsa_asn1.c100 ASN1_SIMPLE(RSA, iqmp, BIGNUM)
H A Drsa_chk.c131 if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL)
161 /* iqmp = q^-1 mod p? */
168 if (BN_cmp(i, key->iqmp) != 0)
H A Drsa_lib.c176 ret->iqmp=NULL;
234 if (r->iqmp != NULL) BN_clear_free(r->iqmp);
434 t[5]= &r->iqmp;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Drsa_test.c29 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
69 static unsigned char iqmp[] = local
114 static unsigned char iqmp[] = local
179 static unsigned char iqmp[] = local
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/engines/
H A De_gmp.c288 mpz_t iqmp; member in struct:st_e_gmp_rsa_ctx
307 mpz_init(hptr->iqmp);
314 if(!rsa->p || !rsa->q || !rsa->d || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
321 !bn2gmp(rsa->dmq1, hptr->dmq1) || !bn2gmp(rsa->iqmp, hptr->iqmp))
334 mpz_clear(hptr->iqmp);
354 mpz_clear(hptr->iqmp);
402 mpz_mul(hptr->r1, hptr->r0, hptr->iqmp);
H A De_cswift.c117 const BIGNUM *iqmp, BN_CTX *ctx);
611 const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx)
626 sw_param.up.crt.iqmp.value = NULL;
671 if(!cswift_bn_32copy(&sw_param.up.crt.iqmp, iqmp))
729 if(sw_param.up.crt.iqmp.value)
730 OPENSSL_free(sw_param.up.crt.iqmp.value);
747 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
758 BN_num_bytes(rsa->iqmp) > 128)
774 rsa->dmq1, rsa->iqmp, ct
609 cswift_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/demos/engines/cluster_labs/
H A Dcluster_labs.h6 const BIGNUM *iqmp, BN_CTX *ctx);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/cluster_labs/
H A Dcluster_labs.h6 const BIGNUM *iqmp, BN_CTX *ctx);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/engine/vendor_defns/
H A Dhwcryptohook.h390 HWCryptoHook_MPI iqmp,
402 HWCryptoHook_MPI iqmp,
H A Dcswift.h185 SW_LARGENUMBER iqmp; /* CRT coefficient */ member in struct:_SW_CRT
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/demos/engines/ibmca/
H A Dhw_ibmca.c97 const BIGNUM *iqmp, BN_CTX *ctx);
606 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
619 rsa->dmq1, rsa->iqmp, ctx);
631 const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx)
652 unsigned int iqmpbytes = BN_num_bytes(iqmp);
712 privKey->qInvLength = CORRECT_ENDIANNESS(BN_num_bytes(iqmp)+8);
774 pkey += pSize - BN_num_bytes(iqmp); /* Adjust for padding */
775 BN_bn2bin(iqmp, pkey);
629 ibmca_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/ibmca/
H A Dhw_ibmca.c97 const BIGNUM *iqmp, BN_CTX *ctx);
606 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
619 rsa->dmq1, rsa->iqmp, ctx);
631 const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx)
652 unsigned int iqmpbytes = BN_num_bytes(iqmp);
712 privKey->qInvLength = CORRECT_ENDIANNESS(BN_num_bytes(iqmp)+8);
774 pkey += pSize - BN_num_bytes(iqmp); /* Adjust for padding */
775 BN_bn2bin(iqmp, pkey);
629 ibmca_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/engines/vendor_defns/
H A Dhwcryptohook.h390 HWCryptoHook_MPI iqmp,
402 HWCryptoHook_MPI iqmp,
H A Dcswift.h185 SW_LARGENUMBER iqmp; /* CRT coefficient */ member in struct:_SW_CRT
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/engine/
H A Dhw_cswift.c99 const BIGNUM *iqmp, BN_CTX *ctx);
559 const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx)
598 !bn_wexpand(rsa_iqmp, iqmp->top) ||
616 sw_param.up.crt.iqmp.nbytes = BN_bn2bin(iqmp,
618 sw_param.up.crt.iqmp.value = (unsigned char *)rsa_iqmp->d;
671 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
677 rsa->dmq1, rsa->iqmp, ctx);
557 cswift_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) argument

Completed in 313 milliseconds

12