Searched refs:bn_set_words (Results 1 – 4 of 4) sorted by relevance
/openssl/crypto/ec/ |
H A D | ecp_sm2p256.c | 489 if (!bn_set_words(x, x_aff, P256_LIMBS)) in ecp_sm2p256_get_affine() 496 if (!bn_set_words(y, y_aff, P256_LIMBS)) in ecp_sm2p256_get_affine() 634 if (!bn_set_words(r->X, p.p.X, P256_LIMBS) in ecp_sm2p256_points_mul() 635 || !bn_set_words(r->Y, p.p.Y, P256_LIMBS) in ecp_sm2p256_points_mul() 636 || !bn_set_words(r->Z, p.p.Z, P256_LIMBS)) in ecp_sm2p256_points_mul() 664 if (!bn_set_words(r, r_fe, P256_LIMBS)) in ecp_sm2p256_field_mul() 686 if (!bn_set_words(r, r_fe, P256_LIMBS)) in ecp_sm2p256_field_sqr() 722 if (!bn_set_words(r, out, P256_LIMBS)) in ecp_sm2p256_inv_mod_ord()
|
H A D | ecp_nistz256.c | 930 if ((ret = bn_set_words(out->X, in->X, P256_LIMBS)) in ecp_nistz256_set_from_affine() 931 && (ret = bn_set_words(out->Y, in->Y, P256_LIMBS)) in ecp_nistz256_set_from_affine() 932 && (ret = bn_set_words(out->Z, ONE, P256_LIMBS))) in ecp_nistz256_set_from_affine() 1143 if (!bn_set_words(r->X, p.p.X, P256_LIMBS) || in ecp_nistz256_points_mul() 1144 !bn_set_words(r->Y, p.p.Y, P256_LIMBS) || in ecp_nistz256_points_mul() 1145 !bn_set_words(r->Z, p.p.Z, P256_LIMBS)) { in ecp_nistz256_points_mul() 1188 if (!bn_set_words(x, x_ret, P256_LIMBS)) in ecp_nistz256_get_affine() 1196 if (!bn_set_words(y, y_ret, P256_LIMBS)) in ecp_nistz256_get_affine() 1437 if (!bn_set_words(r, out, P256_LIMBS)) in ecp_nistz256_inv_mod_ord()
|
/openssl/crypto/bn/ |
H A D | bn_intern.c | 184 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words) in bn_set_words() function
|
/openssl/include/crypto/ |
H A D | bn.h | 62 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words);
|
Completed in 11 milliseconds