Lines Matching refs:field

351 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,  in BN_nist_mod_192()  argument
370 field = &ossl_bignum_nist_p_192; /* just to make sure */ in BN_nist_mod_192()
373 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_192()
375 i = BN_ucmp(field, a); in BN_nist_mod_192()
487 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_224() argument
507 field = &ossl_bignum_nist_p_224; /* just to make sure */ in BN_nist_mod_224()
510 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_224()
512 i = BN_ucmp(field, a); in BN_nist_mod_224()
659 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_256() argument
679 field = &ossl_bignum_nist_p_256; /* just to make sure */ in BN_nist_mod_256()
682 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_256()
684 i = BN_ucmp(field, a); in BN_nist_mod_256()
896 int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_384() argument
916 field = &ossl_bignum_nist_p_384; /* just to make sure */ in BN_nist_mod_384()
919 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_384()
921 i = BN_ucmp(field, a); in BN_nist_mod_384()
1156 int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_521() argument
1168 field = &ossl_bignum_nist_p_521; /* just to make sure */ in BN_nist_mod_521()
1171 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_521()
1173 i = BN_ucmp(field, a); in BN_nist_mod_521()
1225 const BIGNUM *field, BN_CTX *ctx) { in BN_nist_mod_func()