Searched refs:bn_expand2 (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/
H A De_sureware.c717 bn_expand2(rsatmp->e, el / sizeof(BN_ULONG));
718 bn_expand2(rsatmp->n, el / sizeof(BN_ULONG));
759 bn_expand2(dsatmp->pub_key, el / sizeof(BN_ULONG));
760 bn_expand2(dsatmp->p, el / sizeof(BN_ULONG));
761 bn_expand2(dsatmp->q, 20 / sizeof(BN_ULONG));
762 bn_expand2(dsatmp->g, el / sizeof(BN_ULONG));
1046 bn_expand2(psign->r, 20 / sizeof(BN_ULONG));
1047 bn_expand2(psign->s, 20 / sizeof(BN_ULONG));
1079 bn_expand2(r, m->top);
H A De_chil.c826 bn_expand2(rtmp->e, e.size / sizeof(BN_ULONG));
827 bn_expand2(rtmp->n, n.size / sizeof(BN_ULONG));
926 bn_expand2(r, m->top); /* Check for error !! */
992 bn_expand2(r, rsa->n->top); /* Check for error !! */
1029 bn_expand2(r, rsa->n->top); /* Check for error !! */
H A De_gmp.c299 if (bn_expand2(bn, s) == NULL)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/engines/
H A De_sureware.c680 bn_expand2(rsatmp->e, el/sizeof(BN_ULONG));
681 bn_expand2(rsatmp->n, el/sizeof(BN_ULONG));
717 bn_expand2(dsatmp->pub_key, el/sizeof(BN_ULONG));
718 bn_expand2(dsatmp->p, el/sizeof(BN_ULONG));
719 bn_expand2(dsatmp->q, 20/sizeof(BN_ULONG));
720 bn_expand2(dsatmp->g, el/sizeof(BN_ULONG));
996 bn_expand2(psign->r, 20/sizeof(BN_ULONG));
997 bn_expand2(psign->s, 20/sizeof(BN_ULONG));
1033 bn_expand2(r,m->top);
H A De_chil.c829 bn_expand2(rtmp->e, e.size/sizeof(BN_ULONG));
830 bn_expand2(rtmp->n, n.size/sizeof(BN_ULONG));
930 bn_expand2(r, m->top); /* Check for error !! */
998 bn_expand2(r, rsa->n->top); /* Check for error !! */
1040 bn_expand2(r, rsa->n->top); /* Check for error !! */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/
H A De_sureware.c717 bn_expand2(rsatmp->e, el / sizeof(BN_ULONG));
718 bn_expand2(rsatmp->n, el / sizeof(BN_ULONG));
759 bn_expand2(dsatmp->pub_key, el / sizeof(BN_ULONG));
760 bn_expand2(dsatmp->p, el / sizeof(BN_ULONG));
761 bn_expand2(dsatmp->q, 20 / sizeof(BN_ULONG));
762 bn_expand2(dsatmp->g, el / sizeof(BN_ULONG));
1046 bn_expand2(psign->r, 20 / sizeof(BN_ULONG));
1047 bn_expand2(psign->s, 20 / sizeof(BN_ULONG));
1079 bn_expand2(r, m->top);
H A De_chil.c826 bn_expand2(rtmp->e, e.size / sizeof(BN_ULONG));
827 bn_expand2(rtmp->n, n.size / sizeof(BN_ULONG));
926 bn_expand2(r, m->top); /* Check for error !! */
992 bn_expand2(r, rsa->n->top); /* Check for error !! */
1029 bn_expand2(r, rsa->n->top); /* Check for error !! */
H A De_gmp.c299 if (bn_expand2(bn, s) == NULL)
/netgear-R7000-V1.0.7.12_1.2.5/src/include/bcmcrypto/
H A Dbn.h491 (a)->dmax) ? (a) : bn_expand2((a), (bits) / BN_BITS2 + 1))
492 #define bn_wexpand(a, words) (((words) <= (a)->dmax) ? (a) : bn_expand2((a), (words)))
493 BIGNUM *bn_expand2(BIGNUM *a, int words);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dbn.h638 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))
639 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
640 BIGNUM *bn_expand2(BIGNUM *a, int words);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn.h638 (a):bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2))
639 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
640 BIGNUM *bn_expand2(BIGNUM *a, int words);
H A Dbn_lib.c316 /* This is used both by bn_expand2() and bn_dup_expand() */
382 /* This is an internal function that can be used instead of bn_expand2()
387 * The reason to use this instead of a BN_dup() followed by a bn_expand2()
388 * is memory allocation overhead. A BN_dup() followed by a bn_expand2()
445 BIGNUM *bn_expand2(BIGNUM *b, int words) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/
H A Dbn.h733 bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2) \
736 # define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
737 BIGNUM *bn_expand2(BIGNUM *a, int words);
H A Dbn_lib.c285 /* This is used both by bn_expand2() and bn_dup_expand() */
367 * This is an internal function that can be used instead of bn_expand2() when
371 * reason to use this instead of a BN_dup() followed by a bn_expand2() is
372 * memory allocation overhead. A BN_dup() followed by a bn_expand2() will
426 BIGNUM *bn_expand2(BIGNUM *b, int words) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/
H A Dbn.h733 bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2) \
736 # define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
737 BIGNUM *bn_expand2(BIGNUM *a, int words);
H A Dbn_lib.c285 /* This is used both by bn_expand2() and bn_dup_expand() */
367 * This is an internal function that can be used instead of bn_expand2() when
371 * reason to use this instead of a BN_dup() followed by a bn_expand2() is
372 * memory allocation overhead. A BN_dup() followed by a bn_expand2() will
426 BIGNUM *bn_expand2(BIGNUM *b, int words) function

Completed in 364 milliseconds