aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/cryptography/_cffi_src/openssl/bio.py
diff options
context:
space:
mode:
authortorkve <torkve@yandex-team.ru>2022-02-10 16:48:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:23 +0300
commitf9cfbeee51d5849127bb58793a2edcdfd7bb91bb (patch)
treef7c863cfcc3f1cb6de7f77e11fec2ae60868c8fb /contrib/python/cryptography/_cffi_src/openssl/bio.py
parent5eefa17021221fd267f1dd5f9d63d2493d131a8a (diff)
downloadydb-f9cfbeee51d5849127bb58793a2edcdfd7bb91bb.tar.gz
Restoring authorship annotation for <torkve@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/python/cryptography/_cffi_src/openssl/bio.py')
-rw-r--r--contrib/python/cryptography/_cffi_src/openssl/bio.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/python/cryptography/_cffi_src/openssl/bio.py b/contrib/python/cryptography/_cffi_src/openssl/bio.py
index 52d57c6228..e2a589eec9 100644
--- a/contrib/python/cryptography/_cffi_src/openssl/bio.py
+++ b/contrib/python/cryptography/_cffi_src/openssl/bio.py
@@ -9,15 +9,15 @@ INCLUDES = """
"""
TYPES = """
-typedef ... BIO;
+typedef ... BIO;
typedef ... BIO_METHOD;
"""
FUNCTIONS = """
int BIO_free(BIO *);
-void BIO_free_all(BIO *);
+void BIO_free_all(BIO *);
BIO *BIO_new_file(const char *, const char *);
-BIO *BIO_new_dgram(int, int);
+BIO *BIO_new_dgram(int, int);
size_t BIO_ctrl_pending(BIO *);
int BIO_read(BIO *, void *, int);
int BIO_gets(BIO *, char *, int);
@@ -27,8 +27,8 @@ int BIO_up_ref(BIO *);
BIO *BIO_new(BIO_METHOD *);
BIO_METHOD *BIO_s_mem(void);
-BIO_METHOD *BIO_s_datagram(void);
-BIO *BIO_new_mem_buf(const void *, int);
+BIO_METHOD *BIO_s_datagram(void);
+BIO *BIO_new_mem_buf(const void *, int);
long BIO_set_mem_eof_return(BIO *, int);
long BIO_get_mem_data(BIO *, char **);
int BIO_should_read(BIO *);