Warning: Undefined array key "बहिः गच्छतु" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 136

Warning: Undefined array key "aksi" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 140

Warning: Undefined array key "नामपत्र" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 159

Warning: Undefined array key "नामपत्र" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 181
Current File : //usr/lib64/python2.6/ssl.pyo
��
���Lc@s�dZddkZddkZddklZddklZlZlZddklZlZl	Z	l
Z
ddklZlZl
Z
ddklZlZlZlZlZlZlZlZlZddklZlZlZdd	klZdd
klZddkZddkZdefd��YZ dde"ee	de#e#d
�Z$d�Z%dZ&dZ'd�Z(d�Z)edd�Z*d�Z+ddd�Z,dS(sThis module provides some more Pythonic support for SSL.

Object types:

  SSLSocket -- subtype of socket.socket which does SSL over the socket

Exceptions:

  SSLError -- exception raised for I/O errors

Functions:

  cert_time_to_seconds -- convert time string used for certificate
                          notBefore and notAfter functions to integer
                          seconds past the Epoch (the time values
                          returned from time.time())

  fetch_server_certificate (HOST, PORT) -- fetch the certificate provided
                          by the server running on HOST at port PORT.  No
                          validation of the certificate is performed.

Integer constants:

SSL_ERROR_ZERO_RETURN
SSL_ERROR_WANT_READ
SSL_ERROR_WANT_WRITE
SSL_ERROR_WANT_X509_LOOKUP
SSL_ERROR_SYSCALL
SSL_ERROR_SSL
SSL_ERROR_WANT_CONNECT

SSL_ERROR_EOF
SSL_ERROR_INVALID_ERROR_CODE

The following group define certificate requirements that one side is
allowing/requiring from the other side:

CERT_NONE - no certificates from the other side are required (or will
            be looked at if provided)
CERT_OPTIONAL - certificates are not required, but if provided will be
                validated, and if validation fails, the connection will
                also fail
CERT_REQUIRED - certificates are required, and will be validated, and
                if validation fails, the connection will also fail

The following constants identify various SSL protocol variants:

PROTOCOL_SSLv2
PROTOCOL_SSLv3
PROTOCOL_SSLv23
PROTOCOL_TLSv1
i����N(tSSLError(t	CERT_NONEt
CERT_OPTIONALt
CERT_REQUIRED(tPROTOCOL_SSLv2tPROTOCOL_SSLv3tPROTOCOL_SSLv23tPROTOCOL_TLSv1(tRAND_statustRAND_egdtRAND_add(	tSSL_ERROR_ZERO_RETURNtSSL_ERROR_WANT_READtSSL_ERROR_WANT_WRITEtSSL_ERROR_WANT_X509_LOOKUPtSSL_ERROR_SYSCALLt
SSL_ERROR_SSLtSSL_ERROR_WANT_CONNECTt
SSL_ERROR_EOFtSSL_ERROR_INVALID_ERROR_CODE(tsockett_fileobjectt_delegate_methods(terror(tgetnameinfot	SSLSocketc	BseZdZddeeedeed�Zdd�Z	d�Z
ed�Zd�Zdd�Z
dd	�Zdd
�Zddd�Zddd�Zddd
�Zddd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zddd�ZRS(s�This class implements a subtype of socket.socket that wraps
    the underlying OS socket in an SSL context when necessary, and
    provides read and write methods over that channel.c

Cs;ti|d|i�x5tD]-}
yt||
�Wqtj
oqXqW|o|o
|}nyti|�Wn8tj
o,}|iti	jo�nd|_n>Xti
|i||||||�|_|o|i�n||_||_||_||_||_||_|	|_d|_dS(Nt_socki(Rt__init__RRtdelattrtAttributeErrortgetpeernametsocket_errorterrnotENOTCONNtNonet_sslobjt_ssltsslwraptdo_handshaketkeyfiletcertfilet	cert_reqstssl_versiontca_certstdo_handshake_on_connecttsuppress_ragged_eofst_makefile_refs(tselftsockR'R(tserver_sideR)R*R+R,R-tattrte((s/usr/lib64/python2.6/ssl.pyRYs8	
							icCsVy|ii|�SWn;tj
o/}|idtjo|iodS�nXdS(sORead up to LEN bytes and return them.
        Return zero-length string on EOF.itN(R#treadRtargsRR-(R/tlentx((s/usr/lib64/python2.6/ssl.pyR5�scCs|ii|�S(shWrite DATA to the underlying SSL channel.  Returns
        number of bytes of DATA actually transmitted.(R#twrite(R/tdata((s/usr/lib64/python2.6/ssl.pyR9�scCs|ii|�S(s�Returns a formatted version of the data in the
        certificate provided by the other end of the SSL channel.
        Return None if no certificate was provided, {} if a
        certificate was provided, but not validated.(R#tpeer_certificate(R/tbinary_form((s/usr/lib64/python2.6/ssl.pytgetpeercert�scCs |ipdS|ii�SdS(N(R#R"tcipher(R/((s/usr/lib64/python2.6/ssl.pyR>�s
icCs�|io�|djotd|i��nx�toky|ii|�}WnJtj
o>}|idtjodS|idtjodS�q1X|Sq1Wnt	i
|||�SdS(Nis3non-zero flags not allowed in calls to send() on %s(R#t
ValueErrort	__class__tTrueR9RR6RR
Rtsend(R/R:tflagstvR8((s/usr/lib64/python2.6/ssl.pyRB�s"


cCs;|iotd|i��nti||||�SdS(Ns%sendto not allowed on instances of %s(R#R?R@Rtsendto(R/R:taddrRC((s/usr/lib64/python2.6/ssl.pyRE�s
cCs�|iom|djotd|i��nt|�}d}x/||jo!|i||�}||7}qCW|Sti|||�SdS(Nis6non-zero flags not allowed in calls to sendall() on %s(R#R?R@R7RBRtsendall(R/R:RCtamounttcountRD((s/usr/lib64/python2.6/ssl.pyRG�s


cCsS|io2|djotd|i��n|i|�Sti|||�SdS(Nis3non-zero flags not allowed in calls to recv() on %s(R#R?R@R5Rtrecv(R/tbuflenRC((s/usr/lib64/python2.6/ssl.pyRJ�s

cCs�|o|djot|�}n|djo
d}n|ioN|djotd|i��n|i|�}t|�}|||*|Sti||||�SdS(Niis8non-zero flags not allowed in calls to recv_into() on %s(R"R7R#R?R@R5Rt	recv_into(R/tbuffertnbytesRCt
tmp_bufferRD((s/usr/lib64/python2.6/ssl.pyRL�s




cCs;|iotd|i��nti||||�SdS(Ns'recvfrom not allowed on instances of %s(R#R?R@Rtrecvfrom(R/RFRKRC((s/usr/lib64/python2.6/ssl.pyRP�s
cCs;|iotd|i��nti||||�SdS(Ns,recvfrom_into not allowed on instances of %s(R#R?R@Rt
recvfrom_into(R/RMRNRC((s/usr/lib64/python2.6/ssl.pyRQ�s
cCs |io|ii�SdSdS(Ni(R#tpending(R/((s/usr/lib64/python2.6/ssl.pyRR�s
cCsA|io|ii�}d|_|Stdt|���dS(NsNo SSL wrapper around (R#tshutdownR"R?tstr(R/ts((s/usr/lib64/python2.6/ssl.pytunwraps

	cCsd|_ti||�dS(N(R"R#RRS(R/thow((s/usr/lib64/python2.6/ssl.pyRSs	cCs=|idjod|_ti|�n|id8_dS(Ni(R.R"R#Rtclose(R/((s/usr/lib64/python2.6/ssl.pyRXs	cCs|ii�dS(sPerform a TLS/SSL handshake.N(R#R&(R/((s/usr/lib64/python2.6/ssl.pyR&scCs||iotd��nti||�ti|it|i|i	|i
|i|i�|_|i
o|i�ndS(sQConnects to remote ADDR, and then wraps the connection in
        an SSL channel.s/attempt to connect already-connected SSLSocket!N(R#R?RtconnectR$R%RtFalseR'R(R)R*R+R,R&(R/RF((s/usr/lib64/python2.6/ssl.pyRYs

cCs�ti|�\}}yYt|d|id|idtd|id|id|id|i	d|i
�|fSWn%tj
o}|i�|�nXd	S(
s�Accepts a new connection from a remote client, and returns
        a tuple containing that new connection wrapped with a server-side
        SSL channel, and the address of the remote client.R'R(R1R)R*R+R,R-N(
RtacceptRR'R(RAR)R*R+R,R-RRX(R/tnewsockRFR3((s/usr/lib64/python2.6/ssl.pyR[)s								
tri����cCs%|id7_t|||dt�S(s�Make and return a file-like object that
        works with the SSL connection.  Just use the code
        from the socket module.iRX(R.RRA(R/tmodetbufsize((s/usr/lib64/python2.6/ssl.pytmakefile?sN(t__name__t
__module__t__doc__R"RZRRRARR5R9R=R>RBRERGRJRLRPRQRRRVRSRXR&RYR[R`(((s/usr/lib64/python2.6/ssl.pyRSs2%
			
							c		Cs:t|d|d|d|d|d|d|d|d|�S(	NR'R(R1R)R*R+R,R-(R(	R0R'R(R1R)R*R+R,R-((s/usr/lib64/python2.6/ssl.pytwrap_socketLs
cCs%ddk}|i|i|d��S(s�Takes a date-time string in standard ASN1_print form
    ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
    a Python time value in seconds past the epoch.i����Ns%b %d %H:%M:%S %Y GMT(ttimetmktimetstrptime(t	cert_timeRe((s/usr/lib64/python2.6/ssl.pytcert_time_to_seconds[ss-----BEGIN CERTIFICATE-----s-----END CERTIFICATE-----cCsettd�o4ti|�}tdti|d�dtdStdti|�tdSdS(s[Takes a certificate in binary DER format and returns the
    PEM version of it as a string.tstandard_b64encodes
i@N(thasattrtbase64Rjt
PEM_HEADERttextwraptfillt
PEM_FOOTERtencodestring(tder_cert_bytestf((s/usr/lib64/python2.6/ssl.pytDER_cert_to_PEM_certgs%cCs{|it�ptdt��n|i�it�ptdt��n|i�tt�tt�!}ti|�S(shTakes a certificate in ASCII PEM format and returns the
    DER-encoded version of it as a byte sequences(Invalid PEM encoding; must start with %ss&Invalid PEM encoding; must end with %s(	t
startswithRmR?tstriptendswithRpR7Rltdecodestring(tpem_cert_stringtd((s/usr/lib64/python2.6/ssl.pytPEM_cert_to_DER_certws cCsz|\}}|dj	o
t}nt}tt�d|d|d|�}|i|�|it�}|i�t	|�S(s�Retrieve the certificate from the server at the specified address,
    and return it as a PEM-encoded string.
    If 'ca_certs' is specified, validate the server cert against it.
    If 'ssl_version' is specified, use it in the connection attempt.R*R)R+N(
R"RRRdRRYR=RARXRt(RFR*R+thosttportR)RUtdercert((s/usr/lib64/python2.6/ssl.pytget_server_certificate�s



cCsP|tjodS|tjodS|tjodS|tjodSdSdS(NtTLSv1tSSLv23tSSLv2tSSLv3s	<unknown>(RRRR(t
protocol_code((s/usr/lib64/python2.6/ssl.pytget_protocol_name�s



cCsdt|d�o
|i}nti|d||ttd�}y|i�WnnX|i�|S(s�A replacement for the old socket.ssl function.  Designed
    for compability with Python 2.5 and earlier.  Will disappear in
    Python 3.0.RiN(	RkRR$R%RRR"RR&(R0R'R(tssl_sock((s/usr/lib64/python2.6/ssl.pytsslwrap_simple�s

(-RcRnR$RRRRRRRRRR	R
RRR
RRRRRRRRRRRRt_getnameinfoRlR RR"RZRARdRiRmRpRtR{RR�R�(((s/usr/lib64/python2.6/ssl.pyt<module>8s4"@�