opensslv.py 585 B

12345678910111213141516171819202122
  1. # This file is dual licensed under the terms of the Apache License, Version
  2. # 2.0, and the BSD License. See the LICENSE file in the root of this repository
  3. # for complete details.
  4. from __future__ import absolute_import, division, print_function
  5. INCLUDES = """
  6. #include <openssl/opensslv.h>
  7. """
  8. TYPES = """
  9. /* Note that these will be resolved when cryptography is compiled and are NOT
  10. guaranteed to be the version that it actually loads. */
  11. static const int OPENSSL_VERSION_NUMBER;
  12. static const char *const OPENSSL_VERSION_TEXT;
  13. """
  14. FUNCTIONS = """
  15. """
  16. CUSTOMIZATIONS = """
  17. """