/home/lnzliplg/www/__pycache__.tar
version.cpython-36.pyc 0000644 00000001147 15173020456 0010665 0 ustar 00 3
�F\r � @ sB d Z ddddddddgZd Zd
ZdZdZd
ZdZdZdj e�Z
dS )z9
pyOpenSSL - A simple wrapper around the OpenSSL library
�
__author__�
__copyright__� __email__�__license__�__summary__� __title__�__uri__�__version__z19.0.0Z pyOpenSSLzhttps://pyopenssl.org/z0Python wrapper module around the OpenSSL libraryzThe pyOpenSSL developerszcryptography-dev@python.orgzApache License, Version 2.0zCopyright 2001-2017 {0}N)�__doc__�__all__r r r r r r r �formatr � r r �/usr/lib/python3.6/version.py�<module> s
_util.cpython-36.pyc 0000644 00000010063 15173020456 0010311 0 ustar 00 3
�F\N � @ s� d dl Z d dlZd dlmZmZmZ d dlmZ e� Zej � ej
Z
ejZe
jdd�Z
dd� Zdd � Zd
d� Zdd
� Zdd� Zer�dd� Zndd� Ze� Zejd Zdd� ZdS )� N)�PY3�binary_type� text_type)�BindingF)Zshould_clear_after_allocc C s | sdS t tj| ��S )z�
Get a native string type representing of the given CFFI ``char*`` object.
:param charp: A C-style string represented using CFFI.
:return: :class:`str`
� )�native�ffi�string)Zcharp� r
�/usr/lib/python3.6/_util.py�text s r c C sV g }xDt j� }|dkrP |jtt j|��tt j|��tt j|��f� qW | |��dS )ac
Convert an OpenSSL library failure into a Python exception.
When a call to the native OpenSSL library fails, this is usually signalled
by the return value, and an error code is stored in an error queue
associated with the current thread. The err library provides functions to
obtain these error codes and textual error messages.
r N)�libZ
ERR_get_error�appendr ZERR_lib_error_stringZERR_func_error_stringZERR_reason_error_string)Zexception_type�errors�errorr
r
r �exception_from_error_queue"