#include <botan/internal/mp_asm.h>
#include <botan/internal/mp_asmi.h>
#include <botan/internal/mp_core.h>
#include <botan/exceptn.h>
#include <botan/mem_ops.h>
Go to the source code of this file.
|
void | Botan::bigint_add2 (word x[], size_t x_size, const word y[], size_t y_size) |
|
word | Botan::bigint_add2_nc (word x[], size_t x_size, const word y[], size_t y_size) |
|
void | Botan::bigint_add3 (word z[], const word x[], size_t x_size, const word y[], size_t y_size) |
|
word | Botan::bigint_add3_nc (word z[], const word x[], size_t x_size, const word y[], size_t y_size) |
|
void | Botan::bigint_linmul2 (word x[], size_t x_size, word y) |
|
void | Botan::bigint_linmul3 (word z[], const word x[], size_t x_size, word y) |
|
word | Botan::bigint_sub2 (word x[], size_t x_size, const word y[], size_t y_size) |
|
void | Botan::bigint_sub2_rev (word x[], const word y[], size_t y_size) |
|
word | Botan::bigint_sub3 (word z[], const word x[], size_t x_size, const word y[], size_t y_size) |
|