Searched refs:BN_RECP_CTX (Results 1 – 8 of 8) sorted by relevance
/freebsd/crypto/openssl/doc/man3/ |
H A D | BN_mod_mul_reciprocal.pod | 13 BN_RECP_CTX *BN_RECP_CTX_new(void); 14 void BN_RECP_CTX_free(BN_RECP_CTX *recp); 16 int BN_RECP_CTX_set(BN_RECP_CTX *recp, const BIGNUM *m, BN_CTX *ctx); 18 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *a, BN_RECP_CTX *recp, 22 BN_RECP_CTX *recp, BN_CTX *ctx); 46 The B<BN_RECP_CTX> structure cannot be shared between threads. 50 BN_RECP_CTX_new() returns the newly allocated B<BN_RECP_CTX>, and NULL
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_recp.c | 13 void BN_RECP_CTX_init(BN_RECP_CTX *recp) in BN_RECP_CTX_init() 20 BN_RECP_CTX *BN_RECP_CTX_new(void) in BN_RECP_CTX_new() 22 BN_RECP_CTX *ret; in BN_RECP_CTX_new() 35 void BN_RECP_CTX_free(BN_RECP_CTX *recp) in BN_RECP_CTX_free() 45 int BN_RECP_CTX_set(BN_RECP_CTX *recp, const BIGNUM *d, BN_CTX *ctx) in BN_RECP_CTX_set() 56 BN_RECP_CTX *recp, BN_CTX *ctx) in BN_mod_mul_reciprocal() 85 BN_RECP_CTX *recp, BN_CTX *ctx) in BN_div_recp()
|
H A D | bn_local.h | 637 void BN_RECP_CTX_init(BN_RECP_CTX *recp);
|
H A D | bn_exp.c | 177 BN_RECP_CTX recp; in BN_mod_exp_recp()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | bn.h | 450 BN_RECP_CTX *BN_RECP_CTX_new(void); 451 void BN_RECP_CTX_free(BN_RECP_CTX *recp); 452 int BN_RECP_CTX_set(BN_RECP_CTX *recp, const BIGNUM *rdiv, BN_CTX *ctx); 454 BN_RECP_CTX *recp, BN_CTX *ctx); 458 BN_RECP_CTX *recp, BN_CTX *ctx);
|
H A D | types.h | 91 typedef struct bn_recp_ctx_st BN_RECP_CTX; typedef
|
/freebsd/crypto/openssl/util/ |
H A D | indent.pro | 106 -T BN_RECP_CTX
|
/freebsd/crypto/openssl/test/ |
H A D | bntest.c | 260 BN_RECP_CTX *recp = NULL; in test_div_recip()
|