Eneboo - Documentación para desarrolladores
|
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include <limits.h>
#include "cryptlib.h"
#include <sys/types.h>
#include <openssl/bn.h>
#include <openssl/bio.h>
'defines' | |
#define | NDEBUG |
#define | LDOUBLE double |
#define | LLONG long |
#define | DP_S_DEFAULT 0 |
#define | DP_S_FLAGS 1 |
#define | DP_S_MIN 2 |
#define | DP_S_DOT 3 |
#define | DP_S_MAX 4 |
#define | DP_S_MOD 5 |
#define | DP_S_CONV 6 |
#define | DP_S_DONE 7 |
#define | DP_F_MINUS (1 << 0) |
#define | DP_F_PLUS (1 << 1) |
#define | DP_F_SPACE (1 << 2) |
#define | DP_F_NUM (1 << 3) |
#define | DP_F_ZERO (1 << 4) |
#define | DP_F_UP (1 << 5) |
#define | DP_F_UNSIGNED (1 << 6) |
#define | DP_C_SHORT 1 |
#define | DP_C_LONG 2 |
#define | DP_C_LDOUBLE 3 |
#define | DP_C_LLONG 4 |
#define | char_to_int(p) (p - '0') |
#define | OSSL_MAX(p, q) ((p >= q) ? p : q) |
Funciones | |
int | BIO_printf (BIO *bio, const char *format,...) |
int | BIO_vprintf (BIO *bio, const char *format, va_list args) |
int | BIO_snprintf (char *buf, size_t n, const char *format,...) |
int | BIO_vsnprintf (char *buf, size_t n, const char *format, va_list args) |
#define char_to_int | ( | p | ) | (p - '0') |
#define DP_C_LDOUBLE 3 |
#define DP_C_LLONG 4 |
#define DP_C_LONG 2 |
#define DP_C_SHORT 1 |
#define DP_F_MINUS (1 << 0) |
#define DP_F_NUM (1 << 3) |
#define DP_F_PLUS (1 << 1) |
#define DP_F_SPACE (1 << 2) |
#define DP_F_UNSIGNED (1 << 6) |
#define DP_F_UP (1 << 5) |
#define DP_F_ZERO (1 << 4) |
#define DP_S_CONV 6 |
#define DP_S_DEFAULT 0 |
#define DP_S_DONE 7 |
#define DP_S_DOT 3 |
#define DP_S_FLAGS 1 |
#define DP_S_MAX 4 |
#define DP_S_MIN 2 |
#define DP_S_MOD 5 |
#define LDOUBLE double |
#define LLONG long |
#define NDEBUG |
#define OSSL_MAX | ( | p, | |
q | |||
) | ((p >= q) ? p : q) |