#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>
Go to the source code of this file.
|
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_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_ZERO (1 << 4) |
#define OSSL_MAX |
( |
|
p, |
|
|
|
q |
|
) |
| ((p >= q) ? p : q) |
int BIO_printf |
( |
BIO * |
bio, |
|
|
const char * |
format, |
|
|
|
... |
|
) |
| |
int BIO_snprintf |
( |
char * |
buf, |
|
|
size_t |
n, |
|
|
const char * |
format, |
|
|
|
... |
|
) |
| |
int BIO_vprintf |
( |
BIO * |
bio, |
|
|
const char * |
format, |
|
|
va_list |
args |
|
) |
| |
int BIO_vsnprintf |
( |
char * |
buf, |
|
|
size_t |
n, |
|
|
const char * |
format, |
|
|
va_list |
args |
|
) |
| |