diff options
author | 2018-02-18 12:58:25 +0000 | |
---|---|---|
committer | 2018-02-18 12:58:25 +0000 | |
commit | b47f35fc0fdadbb7bcc45988f3e8c8ca81f55ff3 (patch) | |
tree | cb458e63e5a37f45c75baff62d062b5907143d11 /lib/libcrypto/bio/bio.h | |
parent | Provide RSA_{g,s}et0_crt_params() (diff) | |
download | wireguard-openbsd-b47f35fc0fdadbb7bcc45988f3e8c8ca81f55ff3.tar.xz wireguard-openbsd-b47f35fc0fdadbb7bcc45988f3e8c8ca81f55ff3.zip |
Provide BIO_{g,s}et_data() and BIO_set_init().
ok jsing
Diffstat (limited to 'lib/libcrypto/bio/bio.h')
-rw-r--r-- | lib/libcrypto/bio/bio.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libcrypto/bio/bio.h b/lib/libcrypto/bio/bio.h index 3a1577ab37c..c60ab389a04 100644 --- a/lib/libcrypto/bio/bio.h +++ b/lib/libcrypto/bio/bio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bio.h,v 1.31 2018/02/17 13:57:14 tb Exp $ */ +/* $OpenBSD: bio.h,v 1.32 2018/02/18 12:58:25 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -586,6 +586,9 @@ BIO *BIO_new_fp(FILE *stream, int close_flag); BIO * BIO_new(BIO_METHOD *type); int BIO_set(BIO *a, BIO_METHOD *type); int BIO_free(BIO *a); +void *BIO_get_data(BIO *a); +void BIO_set_data(BIO *a, void *ptr); +void BIO_set_init(BIO *a, int init); void BIO_vfree(BIO *a); int BIO_read(BIO *b, void *data, int len) __attribute__((__bounded__(__buffer__,2,3))); |