#include <stdio.h>
#include "cryptlib.h"
#include "bn_lcl.h"
Go to the source code of this file.
|
void | BN_RECP_CTX_init (BN_RECP_CTX *recp) |
|
BN_RECP_CTX * | BN_RECP_CTX_new (void) |
|
void | BN_RECP_CTX_free (BN_RECP_CTX *recp) |
|
int | BN_RECP_CTX_set (BN_RECP_CTX *recp, const BIGNUM *d, BN_CTX *ctx) |
|
int | BN_mod_mul_reciprocal (BIGNUM *r, const BIGNUM *x, const BIGNUM *y, BN_RECP_CTX *recp, BN_CTX *ctx) |
|
int | BN_div_recp (BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, BN_RECP_CTX *recp, BN_CTX *ctx) |
|
int | BN_reciprocal (BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx) |
|