Searched refs:bn_set_words (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14-stable/crypto/openssl/crypto/ec/ |
| HD | ecp_nistz256.c | 943 if ((ret = bn_set_words(out->X, in->X, P256_LIMBS)) in ecp_nistz256_set_from_affine() 944 && (ret = bn_set_words(out->Y, in->Y, P256_LIMBS)) in ecp_nistz256_set_from_affine() 945 && (ret = bn_set_words(out->Z, ONE, P256_LIMBS))) in ecp_nistz256_set_from_affine() 1160 if (!bn_set_words(r->X, p.p.X, P256_LIMBS) || in ecp_nistz256_points_mul() 1161 !bn_set_words(r->Y, p.p.Y, P256_LIMBS) || in ecp_nistz256_points_mul() 1162 !bn_set_words(r->Z, p.p.Z, P256_LIMBS)) { in ecp_nistz256_points_mul() 1205 if (!bn_set_words(x, x_ret, P256_LIMBS)) in ecp_nistz256_get_affine() 1213 if (!bn_set_words(y, y_ret, P256_LIMBS)) in ecp_nistz256_get_affine() 1459 if (!bn_set_words(r, out, P256_LIMBS)) in ecp_nistz256_inv_mod_ord()
|
| /freebsd-14-stable/crypto/openssl/include/crypto/ |
| HD | bn.h | 62 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words);
|
| /freebsd-14-stable/crypto/openssl/crypto/bn/ |
| HD | bn_intern.c | 188 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words) in bn_set_words() function
|