12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # 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_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_pkcs7_signed;
- """
- FUNCTIONS = """
- """
- CUSTOMIZATIONS = """
- #ifndef NID_ED25519
- static const long Cryptography_HAS_ED25519 = 0;
- static const int NID_ED25519 = 0;
- #else
- static const long Cryptography_HAS_ED25519 = 1;
- #endif
- #ifndef NID_ED448
- static const long Cryptography_HAS_ED448 = 0;
- static const int NID_ED448 = 0;
- #else
- static const long Cryptography_HAS_ED448 = 1;
- #endif
- #ifndef NID_poly1305
- static const long Cryptography_HAS_POLY1305 = 0;
- static const int NID_poly1305 = 0;
- #else
- static const long Cryptography_HAS_POLY1305 = 1;
- #endif
- """
|