File nut/include/contrib/crypto/bigint.h


Included Files


Preprocessor definitions

* \file bigint.h * \author Daniel Otte * \date 2010-02-22 * * \license GPLv3 or later *

#define BIGINT_H_

#define BIGINT_WORD_SIZE 32

#define BIGINT_FBS_MASK

#define BIGINT_NEG_MASK 0x80


Typedef bigint_word_t

typedef uint32_t bigint_word_t

Typedef bigint_wordplus_t

typedef uint64_t bigint_wordplus_t

Typedef bigint_wordplus_signed_t

typedef int64_t bigint_wordplus_signed_t

Typedef bigint_t

typedef struct {...} bigint_t
struct  
   {  
      uint16_t length_W;  
      uint8_t info;  
      bigint_word_t* wordv;  
   }