aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/cryptography/_cffi_src/openssl/callbacks.py
diff options
context:
space:
mode:
authorolegts <olegts@yandex-team.ru>2022-02-10 16:48:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:23 +0300
commit5eefa17021221fd267f1dd5f9d63d2493d131a8a (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /contrib/python/cryptography/_cffi_src/openssl/callbacks.py
parent30983fb2586f6904aaf6a5d6ef2b445cbaec1f44 (diff)
downloadydb-5eefa17021221fd267f1dd5f9d63d2493d131a8a.tar.gz
Restoring authorship annotation for <olegts@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/python/cryptography/_cffi_src/openssl/callbacks.py')
-rw-r--r--contrib/python/cryptography/_cffi_src/openssl/callbacks.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/contrib/python/cryptography/_cffi_src/openssl/callbacks.py b/contrib/python/cryptography/_cffi_src/openssl/callbacks.py
index d426f7089b..19301b973a 100644
--- a/contrib/python/cryptography/_cffi_src/openssl/callbacks.py
+++ b/contrib/python/cryptography/_cffi_src/openssl/callbacks.py
@@ -1,14 +1,14 @@
-# This file is dual licensed under the terms of the Apache License, Version
-# 2.0, and the BSD License. See the LICENSE file in the root of this repository
-# for complete details.
-
-from __future__ import absolute_import, division, print_function
-
-INCLUDES = """
+# This file is dual licensed under the terms of the Apache License, Version
+# 2.0, and the BSD License. See the LICENSE file in the root of this repository
+# for complete details.
+
+from __future__ import absolute_import, division, print_function
+
+INCLUDES = """
#include <string.h>
-"""
-
-TYPES = """
+"""
+
+TYPES = """
typedef struct {
char *password;
int length;
@@ -16,13 +16,13 @@ typedef struct {
int error;
int maxsize;
} CRYPTOGRAPHY_PASSWORD_DATA;
-"""
-
-FUNCTIONS = """
+"""
+
+FUNCTIONS = """
int Cryptography_pem_password_cb(char *, int, int, void *);
-"""
-
-CUSTOMIZATIONS = """
+"""
+
+CUSTOMIZATIONS = """
typedef struct {
char *password;
int length;
@@ -49,4 +49,4 @@ int Cryptography_pem_password_cb(char *buf, int size,
return 0;
}
}
-"""
+"""