diff options
author | olegts <olegts@yandex-team.ru> | 2022-02-10 16:48:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:23 +0300 |
commit | 5eefa17021221fd267f1dd5f9d63d2493d131a8a (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /contrib/python/cryptography/_cffi_src/openssl/nid.py | |
parent | 30983fb2586f6904aaf6a5d6ef2b445cbaec1f44 (diff) | |
download | ydb-5eefa17021221fd267f1dd5f9d63d2493d131a8a.tar.gz |
Restoring authorship annotation for <olegts@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/python/cryptography/_cffi_src/openssl/nid.py')
-rw-r--r-- | contrib/python/cryptography/_cffi_src/openssl/nid.py | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/contrib/python/cryptography/_cffi_src/openssl/nid.py b/contrib/python/cryptography/_cffi_src/openssl/nid.py index 2004deec85..9ef88cdbbd 100644 --- a/contrib/python/cryptography/_cffi_src/openssl/nid.py +++ b/contrib/python/cryptography/_cffi_src/openssl/nid.py @@ -1,36 +1,36 @@ -# 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 <openssl/obj_mac.h> -""" - -TYPES = """ +# 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 <openssl/obj_mac.h> +""" + +TYPES = """ static const int Cryptography_HAS_ED448; static const int Cryptography_HAS_ED25519; static const int Cryptography_HAS_POLY1305; -static const int NID_undef; -static const int NID_pbe_WithSHA1And3_Key_TripleDES_CBC; +static const int NID_undef; +static const int NID_pbe_WithSHA1And3_Key_TripleDES_CBC; static const int NID_X25519; static const int NID_X448; static const int NID_ED25519; static const int NID_ED448; static const int NID_poly1305; - -static const int NID_subject_alt_name; -static const int NID_crl_reason; + +static const int NID_subject_alt_name; +static const int NID_crl_reason; static const int NID_pkcs7_signed; -""" - -FUNCTIONS = """ -""" - -CUSTOMIZATIONS = """ +""" + +FUNCTIONS = """ +""" + +CUSTOMIZATIONS = """ #ifndef NID_ED25519 static const long Cryptography_HAS_ED25519 = 0; static const int NID_ED25519 = 0; @@ -49,4 +49,4 @@ static const int NID_poly1305 = 0; #else static const long Cryptography_HAS_POLY1305 = 1; #endif -""" +""" |