#include <openssl/bio.h>
#include <openssl/dh.h>
#include <openssl/sha.h>
#include <memory.h>
#include <assert.h>
Go to the source code of this file.
|
| void | SetDumper (BIO *out) |
| |
| void | SetDumper (FILE *f) |
| |
| void | SetMonitor (BIO *out) |
| |
| void | SetMonitor (FILE *f) |
| |
| void | DumpNumber (BIO *out, const char *szTitle, const BIGNUM *bn, const char *szTrailer=_NL) |
| |
| void | DumpNumber (const char *szTitle, const BIGNUM *bn, const char *szTrailer=_NL) |
| |
| void | HexDump (BIO *out, const char *szTitle, const unsigned char *acBuf, int nLength) |
| |
| void | HexDump (const char *szTitle, const unsigned char *acBuf, int nLength) |
| |
| BIGNUM * | ReadNumber (BIO *in, const char *szTitle) |
| |
| #define BLINDING_LENGTH 8 |
| #define DIGEST_LENGTH SHA_DIGEST_LENGTH |
| #define MIN_COIN_LENGTH 16 |
| void DumpNumber |
( |
BIO * |
out, |
|
|
const char * |
szTitle, |
|
|
const BIGNUM * |
bn, |
|
|
const char * |
szTrailer = _NL |
|
) |
| |
| void DumpNumber |
( |
const char * |
szTitle, |
|
|
const BIGNUM * |
bn, |
|
|
const char * |
szTrailer = _NL |
|
) |
| |
| void HexDump |
( |
BIO * |
out, |
|
|
const char * |
szTitle, |
|
|
const unsigned char * |
acBuf, |
|
|
int |
nLength |
|
) |
| |
| void HexDump |
( |
const char * |
szTitle, |
|
|
const unsigned char * |
acBuf, |
|
|
int |
nLength |
|
) |
| |
| BIGNUM* ReadNumber |
( |
BIO * |
in, |
|
|
const char * |
szTitle |
|
) |
| |
| void SetDumper |
( |
BIO * |
out | ) |
|
| void SetDumper |
( |
FILE * |
f | ) |
|
| void SetMonitor |
( |
BIO * |
out | ) |
|
| void SetMonitor |
( |
FILE * |
f | ) |
|