buffer.h 1.6 KB
Newer Older
R
Rich Salz 已提交
1 2
/*
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9 10
 */

#ifndef HEADER_BUFFER_H
11
# define HEADER_BUFFER_H
12

13
# include <openssl/ossl_typ.h>
R
Rich Salz 已提交
14 15 16
# ifndef HEADER_CRYPTO_H
#  include <openssl/crypto.h>
# endif
17
# include <openssl/buffererr.h>
R
Rich Salz 已提交
18

19

20 21 22 23
#ifdef  __cplusplus
extern "C" {
#endif

24
# include <stddef.h>
25
# include <sys/types.h>
26

R
Rich Salz 已提交
27 28 29 30 31 32 33 34 35 36
/*
 * These names are outdated as of OpenSSL 1.1; a future release
 * will move them to be deprecated.
 */
# define BUF_strdup(s) OPENSSL_strdup(s)
# define BUF_strndup(s, size) OPENSSL_strndup(s, size)
# define BUF_memdup(data, size) OPENSSL_memdup(data, size)
# define BUF_strlcpy(dst, src, size)  OPENSSL_strlcpy(dst, src, size)
# define BUF_strlcat(dst, src, size) OPENSSL_strlcat(dst, src, size)
# define BUF_strnlen(str, maxlen) OPENSSL_strnlen(str, maxlen)
F
FdaSilvaYY 已提交
37

38 39 40 41
struct buf_mem_st {
    size_t length;              /* current number of bytes */
    char *data;
    size_t max;                 /* size of buffer */
R
Rich Salz 已提交
42
    unsigned long flags;
43
};
44

R
Rich Salz 已提交
45 46
# define BUF_MEM_FLAG_SECURE  0x01

47
BUF_MEM *BUF_MEM_new(void);
R
Rich Salz 已提交
48
BUF_MEM *BUF_MEM_new_ex(unsigned long flags);
49
void BUF_MEM_free(BUF_MEM *a);
50 51
size_t BUF_MEM_grow(BUF_MEM *str, size_t len);
size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
E
Emilia Kasper 已提交
52
void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
53

54
int ERR_load_BUF_strings(void);
55

R
Rich Salz 已提交
56
# ifdef  __cplusplus
57
}
R
Rich Salz 已提交
58
# endif
59
#endif