This is a fork of the mbed port of axTLS

Dependents:   TLS_axTLS-Example HTTPSClientExample

Embed: (wiki syntax)

« Back to documentation index

_bigint Struct Reference

_bigint Struct Reference

A big integer basic object. More...

#include <bigint_impl.h>

Data Fields

struct _bigintnext
 The next bigint in the cache.
short size
 The number of components in this bigint.
short max_comps
 The heapsize allocated for this bigint.
int refs
 An internal reference count.
comp * comps
 A ptr to the actual component data.

Detailed Description

A big integer basic object.

Definition at line 85 of file bigint_impl.h.


Field Documentation

comp* comps

A ptr to the actual component data.

Definition at line 91 of file bigint_impl.h.

short max_comps

The heapsize allocated for this bigint.

Definition at line 89 of file bigint_impl.h.

struct _bigint* next

The next bigint in the cache.

Definition at line 87 of file bigint_impl.h.

int refs

An internal reference count.

Definition at line 90 of file bigint_impl.h.

short size

The number of components in this bigint.

Definition at line 88 of file bigint_impl.h.