Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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 

5 

6__all__ = [ 

7 "__title__", 

8 "__summary__", 

9 "__uri__", 

10 "__version__", 

11 "__author__", 

12 "__email__", 

13 "__license__", 

14 "__copyright__", 

15] 

16 

17__title__ = "cryptography" 

18__summary__ = ( 

19 "cryptography is a package which provides cryptographic recipes" 

20 " and primitives to Python developers." 

21) 

22__uri__ = "https://github.com/pyca/cryptography" 

23 

24__version__ = "3.4.7" 

25 

26__author__ = "The Python Cryptographic Authority and individual contributors" 

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

28 

29__license__ = "BSD or Apache License, Version 2.0" 

30__copyright__ = "Copyright 2013-2021 {}".format(__author__)