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>
R
Richard Levitte 已提交
25

26 27 28
# if !defined(NO_SYS_TYPES_H)
#  include <sys/types.h>
# endif
29

R
Rich Salz 已提交
30 31 32 33 34 35 36 37 38 39
/*
 * 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 已提交
40

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

R
Rich Salz 已提交
48 49
# define BUF_MEM_FLAG_SECURE  0x01

50
BUF_MEM *BUF_MEM_new(void);
R
Rich Salz 已提交
51
BUF_MEM *BUF_MEM_new_ex(unsigned long flags);
52
void BUF_MEM_free(BUF_MEM *a);
53 54
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 已提交
55
void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
56

57
int ERR_load_BUF_strings(void);
58

R
Rich Salz 已提交
59
# ifdef  __cplusplus
60
}
R
Rich Salz 已提交
61
# endif
62
#endif