637 lines
23 KiB
C
Vendored
637 lines
23 KiB
C
Vendored
/*
|
|
*----------------------------------------------------------------------
|
|
*
|
|
* tclTomMathDecls.h --
|
|
*
|
|
* This file contains the declarations for the 'libtommath'
|
|
* functions that are exported by the Tcl library.
|
|
*
|
|
* Copyright (c) 2005 by Kevin B. Kenny. All rights reserved.
|
|
*
|
|
* See the file "license.terms" for information on usage and redistribution
|
|
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
*/
|
|
|
|
#ifndef _TCLTOMMATHDECLS
|
|
#define _TCLTOMMATHDECLS
|
|
|
|
#include "tcl.h"
|
|
#include <string.h>
|
|
#ifndef BN_H_
|
|
#include "tclTomMath.h"
|
|
#endif
|
|
|
|
/*
|
|
* Define the version of the Stubs table that's exported for tommath
|
|
*/
|
|
|
|
#define TCLTOMMATH_EPOCH 0
|
|
#define TCLTOMMATH_REVISION 0
|
|
|
|
#define Tcl_TomMath_InitStubs(interp,version) \
|
|
(TclTomMathInitializeStubs((interp),(version),\
|
|
TCLTOMMATH_EPOCH,TCLTOMMATH_REVISION))
|
|
|
|
/* Define custom memory allocation for libtommath */
|
|
|
|
/* MODULE_SCOPE void* TclBNAlloc( size_t ); */
|
|
#define TclBNAlloc(s) Tcl_AttemptAlloc((size_t)(s))
|
|
/* MODULE_SCOPE void* TclBNCalloc( size_t, size_t ); */
|
|
#define TclBNCalloc(m,s) memset(Tcl_AttemptAlloc((size_t)(m)*(size_t)(s)),0,(size_t)(m)*(size_t)(s))
|
|
/* MODULE_SCOPE void* TclBNRealloc( void*, size_t ); */
|
|
#define TclBNRealloc(x,s) Tcl_AttemptRealloc((x),(size_t)(s))
|
|
/* MODULE_SCOPE void TclBNFree( void* ); */
|
|
#define TclBNFree(x) Tcl_Free(x)
|
|
|
|
#undef MP_MALLOC
|
|
#undef MP_CALLOC
|
|
#undef MP_REALLOC
|
|
#undef MP_FREE
|
|
#define MP_MALLOC(size) TclBNAlloc(size)
|
|
#define MP_CALLOC(nmemb, size) TclBNCalloc((nmemb), (size))
|
|
#define MP_REALLOC(mem, oldsize, newsize) TclBNRealloc((mem), ((void)(oldsize), (newsize)))
|
|
#define MP_FREE(mem, size) TclBNFree(((void)(size), (mem)))
|
|
|
|
#ifndef MODULE_SCOPE
|
|
# ifdef __cplusplus
|
|
# define MODULE_SCOPE extern "C"
|
|
# else
|
|
# define MODULE_SCOPE extern
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
MODULE_SCOPE mp_err TclBN_mp_sqr(const mp_int *a, mp_int *b);
|
|
MODULE_SCOPE mp_err TclBN_mp_balance_mul(const mp_int *a, const mp_int *b, mp_int *c);
|
|
MODULE_SCOPE mp_err TclBN_mp_div_3(const mp_int *a, mp_int *c, mp_digit *d);
|
|
MODULE_SCOPE mp_err TclBN_mp_karatsuba_mul(const mp_int *a, const mp_int *b, mp_int *c);
|
|
MODULE_SCOPE mp_err TclBN_mp_karatsuba_sqr(const mp_int *a, mp_int *b);
|
|
MODULE_SCOPE mp_err TclBN_mp_toom_mul(const mp_int *a, const mp_int *b, mp_int *c);
|
|
MODULE_SCOPE mp_err TclBN_mp_toom_sqr(const mp_int *a, mp_int *b);
|
|
MODULE_SCOPE mp_err TclBN_s_mp_add(const mp_int *a, const mp_int *b, mp_int *c);
|
|
MODULE_SCOPE mp_err TclBN_mp_mul_digs(const mp_int *a, const mp_int *b, mp_int *c, int digs);
|
|
MODULE_SCOPE mp_err TclBN_mp_mul_digs_fast(const mp_int *a, const mp_int *b, mp_int *c, int digs);
|
|
MODULE_SCOPE void TclBN_mp_reverse(unsigned char *s, size_t len);
|
|
MODULE_SCOPE mp_err TclBN_s_mp_sqr(const mp_int *a, mp_int *b);
|
|
MODULE_SCOPE mp_err TclBN_mp_sqr_fast(const mp_int *a, mp_int *b);
|
|
MODULE_SCOPE mp_err TclBN_s_mp_sub(const mp_int *a, const mp_int *b, mp_int *c);
|
|
MODULE_SCOPE const char *const TclBN_mp_s_rmap;
|
|
MODULE_SCOPE const uint8_t TclBN_mp_s_rmap_reverse[];
|
|
MODULE_SCOPE const size_t TclBN_mp_s_rmap_reverse_sz;
|
|
MODULE_SCOPE mp_err TclBN_mp_set_int(mp_int *a, unsigned long b);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/* Rename the global symbols in libtommath to avoid linkage conflicts */
|
|
|
|
#ifndef TCL_WITH_EXTERNAL_TOMMATH
|
|
#define bn_reverse TclBN_reverse
|
|
#define mp_add TclBN_mp_add
|
|
#define mp_add_d TclBN_mp_add_d
|
|
#define mp_and TclBN_mp_and
|
|
#define mp_clamp TclBN_mp_clamp
|
|
#define mp_clear TclBN_mp_clear
|
|
#define mp_clear_multi TclBN_mp_clear_multi
|
|
#define mp_cmp TclBN_mp_cmp
|
|
#define mp_cmp_d TclBN_mp_cmp_d
|
|
#define mp_cmp_mag TclBN_mp_cmp_mag
|
|
#define mp_cnt_lsb TclBN_mp_cnt_lsb
|
|
#define mp_copy TclBN_mp_copy
|
|
#define mp_count_bits TclBN_mp_count_bits
|
|
#define mp_div TclBN_mp_div
|
|
#define mp_div_d TclBN_mp_div_d
|
|
#define mp_div_2 TclBN_mp_div_2
|
|
#define mp_div_2d TclBN_mp_div_2d
|
|
#define mp_exch TclBN_mp_exch
|
|
#define mp_expt_d TclBN_mp_expt_n
|
|
#define mp_expt_n TclBN_mp_expt_n
|
|
#define mp_get_mag_u64 TclBN_mp_get_mag_u64
|
|
#define mp_grow TclBN_mp_grow
|
|
#define mp_init TclBN_mp_init
|
|
#define mp_init_copy TclBN_mp_init_copy
|
|
#define mp_init_i64 TclBN_mp_init_i64
|
|
#define mp_init_multi TclBN_mp_init_multi
|
|
#define mp_init_set TclBN_mp_init_set
|
|
#define mp_init_size TclBN_mp_init_size
|
|
#define mp_init_u64 TclBN_mp_init_u64
|
|
#define mp_lshd TclBN_mp_lshd
|
|
#define mp_mod TclBN_mp_mod
|
|
#define mp_mod_2d TclBN_mp_mod_2d
|
|
#define mp_mul TclBN_mp_mul
|
|
#define mp_mul_d TclBN_mp_mul_d
|
|
#define mp_mul_2 TclBN_mp_mul_2
|
|
#define mp_mul_2d TclBN_mp_mul_2d
|
|
#define mp_neg TclBN_mp_neg
|
|
#define mp_or TclBN_mp_or
|
|
#define mp_pack TclBN_mp_pack
|
|
#define mp_pack_count TclBN_mp_pack_count
|
|
#define mp_radix_size TclBN_mp_radix_size
|
|
#define mp_read_radix TclBN_mp_read_radix
|
|
#define mp_rshd TclBN_mp_rshd
|
|
#define mp_s_rmap TclBN_mp_s_rmap
|
|
#define mp_s_rmap_reverse TclBN_mp_s_rmap_reverse
|
|
#define mp_s_rmap_reverse_sz TclBN_mp_s_rmap_reverse_sz
|
|
#define mp_set TclBN_mp_set
|
|
#define mp_set_i64 TclBN_mp_set_i64
|
|
#define mp_set_u64 TclBN_mp_set_u64
|
|
#define mp_shrink TclBN_mp_shrink
|
|
#define mp_sqr TclBN_mp_sqr
|
|
#define mp_sqrt TclBN_mp_sqrt
|
|
#define mp_sub TclBN_mp_sub
|
|
#define mp_sub_d TclBN_mp_sub_d
|
|
#define mp_signed_rsh TclBN_mp_signed_rsh
|
|
#define mp_tc_and TclBN_mp_and
|
|
#define mp_tc_div_2d TclBN_mp_signed_rsh
|
|
#define mp_tc_or TclBN_mp_or
|
|
#define mp_tc_xor TclBN_mp_xor
|
|
#define mp_to_unsigned_bin TclBN_mp_to_unsigned_bin
|
|
#define mp_to_unsigned_bin_n TclBN_mp_to_unsigned_bin_n
|
|
#define mp_toradix_n TclBN_mp_toradix_n
|
|
#define mp_to_radix TclBN_mp_to_radix
|
|
#define mp_to_ubin TclBN_mp_to_ubin
|
|
#define mp_ubin_size TclBN_mp_ubin_size
|
|
#define mp_unpack TclBN_mp_unpack
|
|
#define mp_xor TclBN_mp_xor
|
|
#define mp_zero TclBN_mp_zero
|
|
#define s_mp_add TclBN_s_mp_add
|
|
#define s_mp_balance_mul TclBN_mp_balance_mul
|
|
#define s_mp_div_3 TclBN_mp_div_3
|
|
#define s_mp_karatsuba_mul TclBN_mp_karatsuba_mul
|
|
#define s_mp_karatsuba_sqr TclBN_mp_karatsuba_sqr
|
|
#define s_mp_mul_digs TclBN_mp_mul_digs
|
|
#define s_mp_mul_digs_fast TclBN_mp_mul_digs_fast
|
|
#define s_mp_reverse TclBN_mp_reverse
|
|
#define s_mp_sqr TclBN_s_mp_sqr
|
|
#define s_mp_sqr_fast TclBN_mp_sqr_fast
|
|
#define s_mp_sub TclBN_s_mp_sub
|
|
#define s_mp_toom_mul TclBN_mp_toom_mul
|
|
#define s_mp_toom_sqr TclBN_mp_toom_sqr
|
|
#endif /* !TCL_WITH_EXTERNAL_TOMMATH */
|
|
|
|
#undef TCL_STORAGE_CLASS
|
|
#ifdef BUILD_tcl
|
|
# define TCL_STORAGE_CLASS DLLEXPORT
|
|
#else
|
|
# ifdef USE_TCL_STUBS
|
|
# define TCL_STORAGE_CLASS
|
|
# else
|
|
# define TCL_STORAGE_CLASS DLLIMPORT
|
|
# endif
|
|
#endif
|
|
|
|
/*
|
|
* WARNING: This file is automatically generated by the tools/genStubs.tcl
|
|
* script. Any modifications to the function declarations below should be made
|
|
* in the generic/tclInt.decls script.
|
|
*/
|
|
|
|
/* !BEGIN!: Do not edit below this line. */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* Exported function declarations:
|
|
*/
|
|
|
|
/* 0 */
|
|
EXTERN int TclBN_epoch(void) MP_WUR;
|
|
/* 1 */
|
|
EXTERN int TclBN_revision(void) MP_WUR;
|
|
/* 2 */
|
|
EXTERN mp_err TclBN_mp_add(const mp_int *a, const mp_int *b,
|
|
mp_int *c) MP_WUR;
|
|
/* 3 */
|
|
EXTERN mp_err TclBN_mp_add_d(const mp_int *a, mp_digit b,
|
|
mp_int *c) MP_WUR;
|
|
/* 4 */
|
|
EXTERN mp_err TclBN_mp_and(const mp_int *a, const mp_int *b,
|
|
mp_int *c) MP_WUR;
|
|
/* 5 */
|
|
EXTERN void TclBN_mp_clamp(mp_int *a);
|
|
/* 6 */
|
|
EXTERN void TclBN_mp_clear(mp_int *a);
|
|
/* 7 */
|
|
EXTERN void TclBN_mp_clear_multi(mp_int *a, ...);
|
|
/* 8 */
|
|
EXTERN mp_ord TclBN_mp_cmp(const mp_int *a, const mp_int *b) MP_WUR;
|
|
/* 9 */
|
|
EXTERN mp_ord TclBN_mp_cmp_d(const mp_int *a, mp_digit b) MP_WUR;
|
|
/* 10 */
|
|
EXTERN mp_ord TclBN_mp_cmp_mag(const mp_int *a, const mp_int *b) MP_WUR;
|
|
/* 11 */
|
|
EXTERN mp_err TclBN_mp_copy(const mp_int *a, mp_int *b) MP_WUR;
|
|
/* 12 */
|
|
EXTERN int TclBN_mp_count_bits(const mp_int *a) MP_WUR;
|
|
/* 13 */
|
|
EXTERN mp_err TclBN_mp_div(const mp_int *a, const mp_int *b,
|
|
mp_int *q, mp_int *r) MP_WUR;
|
|
/* 14 */
|
|
EXTERN mp_err TclBN_mp_div_d(const mp_int *a, mp_digit b,
|
|
mp_int *q, mp_digit *r) MP_WUR;
|
|
/* 15 */
|
|
EXTERN mp_err TclBN_mp_div_2(const mp_int *a, mp_int *q) MP_WUR;
|
|
/* 16 */
|
|
EXTERN mp_err TclBN_mp_div_2d(const mp_int *a, int b, mp_int *q,
|
|
mp_int *r) MP_WUR;
|
|
/* Slot 17 is reserved */
|
|
/* 18 */
|
|
EXTERN void TclBN_mp_exch(mp_int *a, mp_int *b);
|
|
/* 19 */
|
|
EXTERN mp_err TclBN_mp_expt_n(const mp_int *a, int b, mp_int *c) MP_WUR;
|
|
/* 20 */
|
|
EXTERN mp_err TclBN_mp_grow(mp_int *a, int size) MP_WUR;
|
|
/* 21 */
|
|
EXTERN mp_err TclBN_mp_init(mp_int *a) MP_WUR;
|
|
/* 22 */
|
|
EXTERN mp_err TclBN_mp_init_copy(mp_int *a, const mp_int *b) MP_WUR;
|
|
/* 23 */
|
|
EXTERN mp_err TclBN_mp_init_multi(mp_int *a, ...) MP_WUR;
|
|
/* 24 */
|
|
EXTERN mp_err TclBN_mp_init_set(mp_int *a, mp_digit b) MP_WUR;
|
|
/* 25 */
|
|
EXTERN mp_err TclBN_mp_init_size(mp_int *a, int size) MP_WUR;
|
|
/* 26 */
|
|
EXTERN mp_err TclBN_mp_lshd(mp_int *a, int shift) MP_WUR;
|
|
/* 27 */
|
|
EXTERN mp_err TclBN_mp_mod(const mp_int *a, const mp_int *b,
|
|
mp_int *r) MP_WUR;
|
|
/* 28 */
|
|
EXTERN mp_err TclBN_mp_mod_2d(const mp_int *a, int b, mp_int *r) MP_WUR;
|
|
/* 29 */
|
|
EXTERN mp_err TclBN_mp_mul(const mp_int *a, const mp_int *b,
|
|
mp_int *p) MP_WUR;
|
|
/* 30 */
|
|
EXTERN mp_err TclBN_mp_mul_d(const mp_int *a, mp_digit b,
|
|
mp_int *p) MP_WUR;
|
|
/* 31 */
|
|
EXTERN mp_err TclBN_mp_mul_2(const mp_int *a, mp_int *p) MP_WUR;
|
|
/* 32 */
|
|
EXTERN mp_err TclBN_mp_mul_2d(const mp_int *a, int d, mp_int *p) MP_WUR;
|
|
/* 33 */
|
|
EXTERN mp_err TclBN_mp_neg(const mp_int *a, mp_int *b) MP_WUR;
|
|
/* 34 */
|
|
EXTERN mp_err TclBN_mp_or(const mp_int *a, const mp_int *b,
|
|
mp_int *c) MP_WUR;
|
|
/* 35 */
|
|
EXTERN mp_err TclBN_mp_radix_size(const mp_int *a, int radix,
|
|
int *size) MP_WUR;
|
|
/* 36 */
|
|
EXTERN mp_err TclBN_mp_read_radix(mp_int *a, const char *str,
|
|
int radix) MP_WUR;
|
|
/* 37 */
|
|
EXTERN void TclBN_mp_rshd(mp_int *a, int shift);
|
|
/* 38 */
|
|
EXTERN mp_err TclBN_mp_shrink(mp_int *a) MP_WUR;
|
|
/* Slot 39 is reserved */
|
|
/* Slot 40 is reserved */
|
|
/* 41 */
|
|
EXTERN mp_err TclBN_mp_sqrt(const mp_int *a, mp_int *b) MP_WUR;
|
|
/* 42 */
|
|
EXTERN mp_err TclBN_mp_sub(const mp_int *a, const mp_int *b,
|
|
mp_int *c) MP_WUR;
|
|
/* 43 */
|
|
EXTERN mp_err TclBN_mp_sub_d(const mp_int *a, mp_digit b,
|
|
mp_int *c) MP_WUR;
|
|
/* Slot 44 is reserved */
|
|
/* Slot 45 is reserved */
|
|
/* Slot 46 is reserved */
|
|
/* 47 */
|
|
EXTERN size_t TclBN_mp_ubin_size(const mp_int *a) MP_WUR;
|
|
/* 48 */
|
|
EXTERN mp_err TclBN_mp_xor(const mp_int *a, const mp_int *b,
|
|
mp_int *c) MP_WUR;
|
|
/* 49 */
|
|
EXTERN void TclBN_mp_zero(mp_int *a);
|
|
/* Slot 50 is reserved */
|
|
/* Slot 51 is reserved */
|
|
/* Slot 52 is reserved */
|
|
/* Slot 53 is reserved */
|
|
/* Slot 54 is reserved */
|
|
/* Slot 55 is reserved */
|
|
/* Slot 56 is reserved */
|
|
/* Slot 57 is reserved */
|
|
/* Slot 58 is reserved */
|
|
/* Slot 59 is reserved */
|
|
/* Slot 60 is reserved */
|
|
/* Slot 61 is reserved */
|
|
/* Slot 62 is reserved */
|
|
/* 63 */
|
|
EXTERN int TclBN_mp_cnt_lsb(const mp_int *a) MP_WUR;
|
|
/* Slot 64 is reserved */
|
|
/* 65 */
|
|
EXTERN int TclBN_mp_init_i64(mp_int *bignum, int64_t initVal) MP_WUR;
|
|
/* 66 */
|
|
EXTERN int TclBN_mp_init_u64(mp_int *bignum, uint64_t initVal) MP_WUR;
|
|
/* Slot 67 is reserved */
|
|
/* 68 */
|
|
EXTERN void TclBN_mp_set_u64(mp_int *a, uint64_t i);
|
|
/* 69 */
|
|
EXTERN uint64_t TclBN_mp_get_mag_u64(const mp_int *a) MP_WUR;
|
|
/* 70 */
|
|
EXTERN void TclBN_mp_set_i64(mp_int *a, int64_t i);
|
|
/* 71 */
|
|
EXTERN mp_err TclBN_mp_unpack(mp_int *rop, size_t count,
|
|
mp_order order, size_t size,
|
|
mp_endian endian, size_t nails,
|
|
const void *op) MP_WUR;
|
|
/* 72 */
|
|
EXTERN mp_err TclBN_mp_pack(void *rop, size_t maxcount,
|
|
size_t *written, mp_order order, size_t size,
|
|
mp_endian endian, size_t nails,
|
|
const mp_int *op) MP_WUR;
|
|
/* Slot 73 is reserved */
|
|
/* Slot 74 is reserved */
|
|
/* Slot 75 is reserved */
|
|
/* 76 */
|
|
EXTERN mp_err TclBN_mp_signed_rsh(const mp_int *a, int b,
|
|
mp_int *c) MP_WUR;
|
|
/* 77 */
|
|
EXTERN size_t TclBN_mp_pack_count(const mp_int *a, size_t nails,
|
|
size_t size) MP_WUR;
|
|
/* 78 */
|
|
EXTERN int TclBN_mp_to_ubin(const mp_int *a, unsigned char *buf,
|
|
size_t maxlen, size_t *written) MP_WUR;
|
|
/* Slot 79 is reserved */
|
|
/* 80 */
|
|
EXTERN int TclBN_mp_to_radix(const mp_int *a, char *str,
|
|
size_t maxlen, size_t *written, int radix) MP_WUR;
|
|
|
|
typedef struct TclTomMathStubs {
|
|
int magic;
|
|
void *hooks;
|
|
|
|
int (*tclBN_epoch) (void) MP_WUR; /* 0 */
|
|
int (*tclBN_revision) (void) MP_WUR; /* 1 */
|
|
mp_err (*tclBN_mp_add) (const mp_int *a, const mp_int *b, mp_int *c) MP_WUR; /* 2 */
|
|
mp_err (*tclBN_mp_add_d) (const mp_int *a, mp_digit b, mp_int *c) MP_WUR; /* 3 */
|
|
mp_err (*tclBN_mp_and) (const mp_int *a, const mp_int *b, mp_int *c) MP_WUR; /* 4 */
|
|
void (*tclBN_mp_clamp) (mp_int *a); /* 5 */
|
|
void (*tclBN_mp_clear) (mp_int *a); /* 6 */
|
|
void (*tclBN_mp_clear_multi) (mp_int *a, ...); /* 7 */
|
|
mp_ord (*tclBN_mp_cmp) (const mp_int *a, const mp_int *b) MP_WUR; /* 8 */
|
|
mp_ord (*tclBN_mp_cmp_d) (const mp_int *a, mp_digit b) MP_WUR; /* 9 */
|
|
mp_ord (*tclBN_mp_cmp_mag) (const mp_int *a, const mp_int *b) MP_WUR; /* 10 */
|
|
mp_err (*tclBN_mp_copy) (const mp_int *a, mp_int *b) MP_WUR; /* 11 */
|
|
int (*tclBN_mp_count_bits) (const mp_int *a) MP_WUR; /* 12 */
|
|
mp_err (*tclBN_mp_div) (const mp_int *a, const mp_int *b, mp_int *q, mp_int *r) MP_WUR; /* 13 */
|
|
mp_err (*tclBN_mp_div_d) (const mp_int *a, mp_digit b, mp_int *q, mp_digit *r) MP_WUR; /* 14 */
|
|
mp_err (*tclBN_mp_div_2) (const mp_int *a, mp_int *q) MP_WUR; /* 15 */
|
|
mp_err (*tclBN_mp_div_2d) (const mp_int *a, int b, mp_int *q, mp_int *r) MP_WUR; /* 16 */
|
|
void (*reserved17)(void);
|
|
void (*tclBN_mp_exch) (mp_int *a, mp_int *b); /* 18 */
|
|
mp_err (*tclBN_mp_expt_n) (const mp_int *a, int b, mp_int *c) MP_WUR; /* 19 */
|
|
mp_err (*tclBN_mp_grow) (mp_int *a, int size) MP_WUR; /* 20 */
|
|
mp_err (*tclBN_mp_init) (mp_int *a) MP_WUR; /* 21 */
|
|
mp_err (*tclBN_mp_init_copy) (mp_int *a, const mp_int *b) MP_WUR; /* 22 */
|
|
mp_err (*tclBN_mp_init_multi) (mp_int *a, ...) MP_WUR; /* 23 */
|
|
mp_err (*tclBN_mp_init_set) (mp_int *a, mp_digit b) MP_WUR; /* 24 */
|
|
mp_err (*tclBN_mp_init_size) (mp_int *a, int size) MP_WUR; /* 25 */
|
|
mp_err (*tclBN_mp_lshd) (mp_int *a, int shift) MP_WUR; /* 26 */
|
|
mp_err (*tclBN_mp_mod) (const mp_int *a, const mp_int *b, mp_int *r) MP_WUR; /* 27 */
|
|
mp_err (*tclBN_mp_mod_2d) (const mp_int *a, int b, mp_int *r) MP_WUR; /* 28 */
|
|
mp_err (*tclBN_mp_mul) (const mp_int *a, const mp_int *b, mp_int *p) MP_WUR; /* 29 */
|
|
mp_err (*tclBN_mp_mul_d) (const mp_int *a, mp_digit b, mp_int *p) MP_WUR; /* 30 */
|
|
mp_err (*tclBN_mp_mul_2) (const mp_int *a, mp_int *p) MP_WUR; /* 31 */
|
|
mp_err (*tclBN_mp_mul_2d) (const mp_int *a, int d, mp_int *p) MP_WUR; /* 32 */
|
|
mp_err (*tclBN_mp_neg) (const mp_int *a, mp_int *b) MP_WUR; /* 33 */
|
|
mp_err (*tclBN_mp_or) (const mp_int *a, const mp_int *b, mp_int *c) MP_WUR; /* 34 */
|
|
mp_err (*tclBN_mp_radix_size) (const mp_int *a, int radix, int *size) MP_WUR; /* 35 */
|
|
mp_err (*tclBN_mp_read_radix) (mp_int *a, const char *str, int radix) MP_WUR; /* 36 */
|
|
void (*tclBN_mp_rshd) (mp_int *a, int shift); /* 37 */
|
|
mp_err (*tclBN_mp_shrink) (mp_int *a) MP_WUR; /* 38 */
|
|
void (*reserved39)(void);
|
|
void (*reserved40)(void);
|
|
mp_err (*tclBN_mp_sqrt) (const mp_int *a, mp_int *b) MP_WUR; /* 41 */
|
|
mp_err (*tclBN_mp_sub) (const mp_int *a, const mp_int *b, mp_int *c) MP_WUR; /* 42 */
|
|
mp_err (*tclBN_mp_sub_d) (const mp_int *a, mp_digit b, mp_int *c) MP_WUR; /* 43 */
|
|
void (*reserved44)(void);
|
|
void (*reserved45)(void);
|
|
void (*reserved46)(void);
|
|
size_t (*tclBN_mp_ubin_size) (const mp_int *a) MP_WUR; /* 47 */
|
|
mp_err (*tclBN_mp_xor) (const mp_int *a, const mp_int *b, mp_int *c) MP_WUR; /* 48 */
|
|
void (*tclBN_mp_zero) (mp_int *a); /* 49 */
|
|
void (*reserved50)(void);
|
|
void (*reserved51)(void);
|
|
void (*reserved52)(void);
|
|
void (*reserved53)(void);
|
|
void (*reserved54)(void);
|
|
void (*reserved55)(void);
|
|
void (*reserved56)(void);
|
|
void (*reserved57)(void);
|
|
void (*reserved58)(void);
|
|
void (*reserved59)(void);
|
|
void (*reserved60)(void);
|
|
void (*reserved61)(void);
|
|
void (*reserved62)(void);
|
|
int (*tclBN_mp_cnt_lsb) (const mp_int *a) MP_WUR; /* 63 */
|
|
void (*reserved64)(void);
|
|
int (*tclBN_mp_init_i64) (mp_int *bignum, int64_t initVal) MP_WUR; /* 65 */
|
|
int (*tclBN_mp_init_u64) (mp_int *bignum, uint64_t initVal) MP_WUR; /* 66 */
|
|
void (*reserved67)(void);
|
|
void (*tclBN_mp_set_u64) (mp_int *a, uint64_t i); /* 68 */
|
|
uint64_t (*tclBN_mp_get_mag_u64) (const mp_int *a) MP_WUR; /* 69 */
|
|
void (*tclBN_mp_set_i64) (mp_int *a, int64_t i); /* 70 */
|
|
mp_err (*tclBN_mp_unpack) (mp_int *rop, size_t count, mp_order order, size_t size, mp_endian endian, size_t nails, const void *op) MP_WUR; /* 71 */
|
|
mp_err (*tclBN_mp_pack) (void *rop, size_t maxcount, size_t *written, mp_order order, size_t size, mp_endian endian, size_t nails, const mp_int *op) MP_WUR; /* 72 */
|
|
void (*reserved73)(void);
|
|
void (*reserved74)(void);
|
|
void (*reserved75)(void);
|
|
mp_err (*tclBN_mp_signed_rsh) (const mp_int *a, int b, mp_int *c) MP_WUR; /* 76 */
|
|
size_t (*tclBN_mp_pack_count) (const mp_int *a, size_t nails, size_t size) MP_WUR; /* 77 */
|
|
int (*tclBN_mp_to_ubin) (const mp_int *a, unsigned char *buf, size_t maxlen, size_t *written) MP_WUR; /* 78 */
|
|
void (*reserved79)(void);
|
|
int (*tclBN_mp_to_radix) (const mp_int *a, char *str, size_t maxlen, size_t *written, int radix) MP_WUR; /* 80 */
|
|
} TclTomMathStubs;
|
|
|
|
extern const TclTomMathStubs *tclTomMathStubsPtr;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#if defined(USE_TCL_STUBS)
|
|
|
|
/*
|
|
* Inline function declarations:
|
|
*/
|
|
|
|
#define TclBN_epoch \
|
|
(tclTomMathStubsPtr->tclBN_epoch) /* 0 */
|
|
#define TclBN_revision \
|
|
(tclTomMathStubsPtr->tclBN_revision) /* 1 */
|
|
#define TclBN_mp_add \
|
|
(tclTomMathStubsPtr->tclBN_mp_add) /* 2 */
|
|
#define TclBN_mp_add_d \
|
|
(tclTomMathStubsPtr->tclBN_mp_add_d) /* 3 */
|
|
#define TclBN_mp_and \
|
|
(tclTomMathStubsPtr->tclBN_mp_and) /* 4 */
|
|
#define TclBN_mp_clamp \
|
|
(tclTomMathStubsPtr->tclBN_mp_clamp) /* 5 */
|
|
#define TclBN_mp_clear \
|
|
(tclTomMathStubsPtr->tclBN_mp_clear) /* 6 */
|
|
#define TclBN_mp_clear_multi \
|
|
(tclTomMathStubsPtr->tclBN_mp_clear_multi) /* 7 */
|
|
#define TclBN_mp_cmp \
|
|
(tclTomMathStubsPtr->tclBN_mp_cmp) /* 8 */
|
|
#define TclBN_mp_cmp_d \
|
|
(tclTomMathStubsPtr->tclBN_mp_cmp_d) /* 9 */
|
|
#define TclBN_mp_cmp_mag \
|
|
(tclTomMathStubsPtr->tclBN_mp_cmp_mag) /* 10 */
|
|
#define TclBN_mp_copy \
|
|
(tclTomMathStubsPtr->tclBN_mp_copy) /* 11 */
|
|
#define TclBN_mp_count_bits \
|
|
(tclTomMathStubsPtr->tclBN_mp_count_bits) /* 12 */
|
|
#define TclBN_mp_div \
|
|
(tclTomMathStubsPtr->tclBN_mp_div) /* 13 */
|
|
#define TclBN_mp_div_d \
|
|
(tclTomMathStubsPtr->tclBN_mp_div_d) /* 14 */
|
|
#define TclBN_mp_div_2 \
|
|
(tclTomMathStubsPtr->tclBN_mp_div_2) /* 15 */
|
|
#define TclBN_mp_div_2d \
|
|
(tclTomMathStubsPtr->tclBN_mp_div_2d) /* 16 */
|
|
/* Slot 17 is reserved */
|
|
#define TclBN_mp_exch \
|
|
(tclTomMathStubsPtr->tclBN_mp_exch) /* 18 */
|
|
#define TclBN_mp_expt_n \
|
|
(tclTomMathStubsPtr->tclBN_mp_expt_n) /* 19 */
|
|
#define TclBN_mp_grow \
|
|
(tclTomMathStubsPtr->tclBN_mp_grow) /* 20 */
|
|
#define TclBN_mp_init \
|
|
(tclTomMathStubsPtr->tclBN_mp_init) /* 21 */
|
|
#define TclBN_mp_init_copy \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_copy) /* 22 */
|
|
#define TclBN_mp_init_multi \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_multi) /* 23 */
|
|
#define TclBN_mp_init_set \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_set) /* 24 */
|
|
#define TclBN_mp_init_size \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_size) /* 25 */
|
|
#define TclBN_mp_lshd \
|
|
(tclTomMathStubsPtr->tclBN_mp_lshd) /* 26 */
|
|
#define TclBN_mp_mod \
|
|
(tclTomMathStubsPtr->tclBN_mp_mod) /* 27 */
|
|
#define TclBN_mp_mod_2d \
|
|
(tclTomMathStubsPtr->tclBN_mp_mod_2d) /* 28 */
|
|
#define TclBN_mp_mul \
|
|
(tclTomMathStubsPtr->tclBN_mp_mul) /* 29 */
|
|
#define TclBN_mp_mul_d \
|
|
(tclTomMathStubsPtr->tclBN_mp_mul_d) /* 30 */
|
|
#define TclBN_mp_mul_2 \
|
|
(tclTomMathStubsPtr->tclBN_mp_mul_2) /* 31 */
|
|
#define TclBN_mp_mul_2d \
|
|
(tclTomMathStubsPtr->tclBN_mp_mul_2d) /* 32 */
|
|
#define TclBN_mp_neg \
|
|
(tclTomMathStubsPtr->tclBN_mp_neg) /* 33 */
|
|
#define TclBN_mp_or \
|
|
(tclTomMathStubsPtr->tclBN_mp_or) /* 34 */
|
|
#define TclBN_mp_radix_size \
|
|
(tclTomMathStubsPtr->tclBN_mp_radix_size) /* 35 */
|
|
#define TclBN_mp_read_radix \
|
|
(tclTomMathStubsPtr->tclBN_mp_read_radix) /* 36 */
|
|
#define TclBN_mp_rshd \
|
|
(tclTomMathStubsPtr->tclBN_mp_rshd) /* 37 */
|
|
#define TclBN_mp_shrink \
|
|
(tclTomMathStubsPtr->tclBN_mp_shrink) /* 38 */
|
|
/* Slot 39 is reserved */
|
|
/* Slot 40 is reserved */
|
|
#define TclBN_mp_sqrt \
|
|
(tclTomMathStubsPtr->tclBN_mp_sqrt) /* 41 */
|
|
#define TclBN_mp_sub \
|
|
(tclTomMathStubsPtr->tclBN_mp_sub) /* 42 */
|
|
#define TclBN_mp_sub_d \
|
|
(tclTomMathStubsPtr->tclBN_mp_sub_d) /* 43 */
|
|
/* Slot 44 is reserved */
|
|
/* Slot 45 is reserved */
|
|
/* Slot 46 is reserved */
|
|
#define TclBN_mp_ubin_size \
|
|
(tclTomMathStubsPtr->tclBN_mp_ubin_size) /* 47 */
|
|
#define TclBN_mp_xor \
|
|
(tclTomMathStubsPtr->tclBN_mp_xor) /* 48 */
|
|
#define TclBN_mp_zero \
|
|
(tclTomMathStubsPtr->tclBN_mp_zero) /* 49 */
|
|
/* Slot 50 is reserved */
|
|
/* Slot 51 is reserved */
|
|
/* Slot 52 is reserved */
|
|
/* Slot 53 is reserved */
|
|
/* Slot 54 is reserved */
|
|
/* Slot 55 is reserved */
|
|
/* Slot 56 is reserved */
|
|
/* Slot 57 is reserved */
|
|
/* Slot 58 is reserved */
|
|
/* Slot 59 is reserved */
|
|
/* Slot 60 is reserved */
|
|
/* Slot 61 is reserved */
|
|
/* Slot 62 is reserved */
|
|
#define TclBN_mp_cnt_lsb \
|
|
(tclTomMathStubsPtr->tclBN_mp_cnt_lsb) /* 63 */
|
|
/* Slot 64 is reserved */
|
|
#define TclBN_mp_init_i64 \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_i64) /* 65 */
|
|
#define TclBN_mp_init_u64 \
|
|
(tclTomMathStubsPtr->tclBN_mp_init_u64) /* 66 */
|
|
/* Slot 67 is reserved */
|
|
#define TclBN_mp_set_u64 \
|
|
(tclTomMathStubsPtr->tclBN_mp_set_u64) /* 68 */
|
|
#define TclBN_mp_get_mag_u64 \
|
|
(tclTomMathStubsPtr->tclBN_mp_get_mag_u64) /* 69 */
|
|
#define TclBN_mp_set_i64 \
|
|
(tclTomMathStubsPtr->tclBN_mp_set_i64) /* 70 */
|
|
#define TclBN_mp_unpack \
|
|
(tclTomMathStubsPtr->tclBN_mp_unpack) /* 71 */
|
|
#define TclBN_mp_pack \
|
|
(tclTomMathStubsPtr->tclBN_mp_pack) /* 72 */
|
|
/* Slot 73 is reserved */
|
|
/* Slot 74 is reserved */
|
|
/* Slot 75 is reserved */
|
|
#define TclBN_mp_signed_rsh \
|
|
(tclTomMathStubsPtr->tclBN_mp_signed_rsh) /* 76 */
|
|
#define TclBN_mp_pack_count \
|
|
(tclTomMathStubsPtr->tclBN_mp_pack_count) /* 77 */
|
|
#define TclBN_mp_to_ubin \
|
|
(tclTomMathStubsPtr->tclBN_mp_to_ubin) /* 78 */
|
|
/* Slot 79 is reserved */
|
|
#define TclBN_mp_to_radix \
|
|
(tclTomMathStubsPtr->tclBN_mp_to_radix) /* 80 */
|
|
|
|
#endif /* defined(USE_TCL_STUBS) */
|
|
|
|
/* !END!: Do not edit above this line. */
|
|
|
|
#undef mp_get_ll
|
|
#define mp_get_ll(a) ((long long)mp_get_i64(a))
|
|
#undef mp_set_ll
|
|
#define mp_set_ll(a,b) mp_set_i64(a,b)
|
|
#undef mp_init_ll
|
|
#define mp_init_ll(a,b) mp_init_i64(a,b)
|
|
#undef mp_get_ull
|
|
#define mp_get_ull(a) ((unsigned long long)mp_get_i64(a))
|
|
#undef mp_set_ull
|
|
#define mp_set_ull(a,b) mp_set_u64(a,b)
|
|
#undef mp_init_ull
|
|
#define mp_init_ull(a,b) mp_init_u64(a,b)
|
|
#undef mp_set
|
|
#define mp_set(a,b) mp_set_i64((a),(int32_t)(b))
|
|
#define mp_set_i32(a,b) mp_set_i64((a),(int32_t)(b))
|
|
#define mp_set_l(a,b) mp_set_i64((a),(long)(b))
|
|
#define mp_set_u32(a,b) mp_set_u64((a),(uint32_t)(b))
|
|
#define mp_set_ul(a,b) mp_set_u64((a),(unsigned long)(b))
|
|
#define mp_init_i32(a,b) mp_init_i64((a),(int32_t)(b))
|
|
#define mp_init_l(a,b) mp_init_i64((a),(long)(b))
|
|
#define mp_init_u32(a,b) mp_init_u64((a),(uint32_t)(b))
|
|
#define mp_init_ul(a,b) mp_init_u64((a),(unsigned long)(b))
|
|
#undef mp_iseven
|
|
#undef mp_isodd
|
|
#define mp_iseven(a) (!mp_isodd(a))
|
|
#define mp_isodd(a) (((a)->used != 0) && (((a)->dp[0] & 1) != 0))
|
|
#undef mp_sqr
|
|
#define mp_sqr(a,b) mp_mul(a,a,b)
|
|
|
|
#undef TCL_STORAGE_CLASS
|
|
#define TCL_STORAGE_CLASS DLLIMPORT
|
|
|
|
#endif /* _TCLINTDECLS */
|