Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/OpenSSL/version.py: 91%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

11 statements  

1# Copyright (C) AB Strakt 

2# Copyright (C) Jean-Paul Calderone 

3# See LICENSE for details. 

4 

5""" 

6pyOpenSSL - A simple wrapper around the OpenSSL library 

7""" 

8 

9__all__ = [ 

10 "__author__", 

11 "__copyright__", 

12 "__email__", 

13 "__license__", 

14 "__summary__", 

15 "__title__", 

16 "__uri__", 

17 "__version__", 

18] 

19 

20__version__ = "25.1.0" 

21 

22__title__ = "pyOpenSSL" 

23__uri__ = "https://pyopenssl.org/" 

24__summary__ = "Python wrapper module around the OpenSSL library" 

25__author__ = "The pyOpenSSL developers" 

26__email__ = "cryptography-dev@python.org" 

27__license__ = "Apache License, Version 2.0" 

28__copyright__ = f"Copyright 2001-2025 {__author__}"