Eneboo - Documentación para desarrolladores
'defines' | Funciones
Referencia del Archivo src/libdigidoc/openssl/crypto/bn/bn_exp.c
#include "cryptlib.h"
#include "bn_lcl.h"

'defines'

#define TABLE_SIZE   32
#define MONT_MUL_MOD
#define MONT_EXP_WORD
#define RECP_MUL_MOD
#define MOD_EXP_CTIME_ALIGN(x_)   ((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((BN_ULONG)(x_)) & (MOD_EXP_CTIME_MIN_CACHE_LINE_MASK))))
#define BN_MOD_MUL_WORD(r, w, m)
#define BN_TO_MONTGOMERY_WORD(r, w, mont)   (BN_set_word(r, (w)) && BN_to_montgomery(r, r, (mont), ctx))

Funciones

int BN_exp (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
int BN_mod_exp (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx)
int BN_mod_exp_recp (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx)
int BN_mod_exp_mont (BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
int BN_mod_exp_mont_consttime (BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
int BN_mod_exp_mont_word (BIGNUM *rr, BN_ULONG a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
int BN_mod_exp_simple (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx)

Documentación de los 'defines'

#define BN_MOD_MUL_WORD (   r,
  w,
 
)
Valor:
(BN_mul_word(r, (w)) && \
                (/* BN_ucmp(r, (m)) < 0 ? 1 :*/  \
                        (BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1))))
#define BN_TO_MONTGOMERY_WORD (   r,
  w,
  mont 
)    (BN_set_word(r, (w)) && BN_to_montgomery(r, r, (mont), ctx))
#define MOD_EXP_CTIME_ALIGN (   x_)    ((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((BN_ULONG)(x_)) & (MOD_EXP_CTIME_MIN_CACHE_LINE_MASK))))
#define MONT_EXP_WORD
#define MONT_MUL_MOD
#define RECP_MUL_MOD
#define TABLE_SIZE   32

Documentación de las funciones

int BN_exp ( BIGNUM r,
const BIGNUM a,
const BIGNUM p,
BN_CTX ctx 
)
int BN_mod_exp ( BIGNUM r,
const BIGNUM a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx 
)
int BN_mod_exp_mont ( BIGNUM rr,
const BIGNUM a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx,
BN_MONT_CTX in_mont 
)
int BN_mod_exp_mont_consttime ( BIGNUM rr,
const BIGNUM a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx,
BN_MONT_CTX in_mont 
)
int BN_mod_exp_mont_word ( BIGNUM rr,
BN_ULONG  a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx,
BN_MONT_CTX in_mont 
)
int BN_mod_exp_recp ( BIGNUM r,
const BIGNUM a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx 
)
int BN_mod_exp_simple ( BIGNUM r,
const BIGNUM a,
const BIGNUM p,
const BIGNUM m,
BN_CTX ctx 
)
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'