/* END BIO_ADDRINFO/BIO_ADDR stuff. */
-/* BIO_BUF_MEM */
-struct bio_buf_mem_st {
- struct buf_mem_st *buf; /* allocated buffer */
- struct buf_mem_st *readp; /* read pointer */
-};
-
#include "internal/cryptlib.h"
#include <internal/bio.h>
static int mem_free(BIO *data);
static int mem_buf_free(BIO *data, int free_all);
static int mem_buf_sync(BIO *h);
+
static const BIO_METHOD mem_method = {
BIO_TYPE_MEM,
"memory buffer",
mem_free,
NULL,
};
+
static const BIO_METHOD secmem_method = {
BIO_TYPE_MEM,
"secure memory buffer",
NULL,
};
+/* BIO memory stores buffer and read pointer */
+typedef struct bio_buf_mem_st {
+ struct buf_mem_st *buf; /* allocated buffer */
+ struct buf_mem_st *readp; /* read pointer */
+} BIO_BUF_MEM;
+
/*
* bio->num is used to hold the value to return on 'empty', if it is 0,
* should_retry is not set
typedef struct bn_gencb_st BN_GENCB;
typedef struct buf_mem_st BUF_MEM;
-typedef struct bio_buf_mem_st BIO_BUF_MEM;
typedef struct evp_cipher_st EVP_CIPHER;
typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;