HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: //usr/lib/python3.5/__pycache__/hashlib.cpython-35.pyc


Fa+@sdZdZeeZeeZedZiZddZd
dZdddZ	dddZ
y.ddlZe
ZeZ
ejejZWnek
re	ZeZ
YnXyddlmZWn_ek
r.eddedDZeddedDZddd
ZYnXxVeD]NZye
eee<Wq6ek
rddlZejdeYq6Xq6W[[[
[	[
[dS)ahashlib module - A common interface to many hash functions.

new(name, data=b'') - returns a new hash object implementing the
                      given hash function; initializing the hash
                      using the given binary data.

Named constructor functions are also available, these are faster
than using new(name):

md5(), sha1(), sha224(), sha256(), sha384(), and sha512()

More algorithms may be available on your platform but the above are guaranteed
to exist.  See the algorithms_guaranteed and algorithms_available attributes
to find out what algorithm names can be passed to new().

NOTE: If you want the adler32 or crc32 hash functions they are available in
the zlib module.

Choose your hash function wisely.  Some have known collision weaknesses.
sha384 and sha512 will be slow on 32 bit platforms.

Hash objects have these methods:
 - update(arg): Update the hash object with the bytes in arg. Repeated calls
                are equivalent to a single call with the concatenation of all
                the arguments.
 - digest():    Return the digest of the bytes passed to the update() method
                so far.
 - hexdigest(): Like digest() except the digest is returned as a unicode
                object of double length, containing only hexadecimal digits.
 - copy():      Return a copy (clone) of the hash object. This can be used to
                efficiently compute the digests of strings that share a common
                initial substring.

For example, to obtain the digest of the string 'Nobody inspects the
spammish repetition':

    >>> import hashlib
    >>> m = hashlib.md5()
    >>> m.update(b"Nobody inspects")
    >>> m.update(b" the spammish repetition")
    >>> m.digest()
    b'\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9'

More condensed:

    >>> hashlib.sha224(b"Nobody inspects the spammish repetition").hexdigest()
    'a4337bc45a8fc544c03f52dc550cd6e1e87021bc896588bd79e901e2'

md5sha1sha224sha256sha384sha512newalgorithms_guaranteedalgorithms_availablepbkdf2_hmaccCsXt}|j|}|dk	r%|Sy|dkrXddl}|j|d<|d<n|dkrddl}|j|d<|d<n|dkrddl}|j|d<|d	<|j|d<|d<nB|dkrddl	}|j
|d<|d
<|j|d
<|d<Wntk
r$YnX|j|}|dk	rD|St
d|dS)NSHA1rMD5rSHA256rSHA224rSHA512rSHA384rzunsupported hash type )rr)r
r)rrrr)rrrr)__builtin_constructor_cacheget_sha1r_md5r_sha256rr_sha512rrImportError
ValueError)namecacheconstructorrrrrr/usr/lib/python3.5/hashlib.py__get_builtin_constructorDs2
rcCsKy"ttd|}||SWn"ttfk
rFt|SYnXdS)NZopenssl_)getattr_hashlibAttributeErrorrr)rfrrr__get_openssl_constructorbsr$cCst||S)znew(name, data=b'') - Return a new hashing object using the named algorithm;
    optionally initialized with data (which must be bytes).
    )r)rdatarrr__py_newnsr'cCs=ytj||SWn"tk
r8t||SYnXdS)znew(name, data=b'') - Return a new hashing object using the named algorithm;
    optionally initialized with data (which must be bytes).
    N)r!rrr)rr&rrr
__hash_newus
r(rN)r
ccs|]}|dAVqdS)\Nr).0xrrr	<genexpr>sr,ccs|]}|dAVqdS)6Nr)r*r+rrrr,scCst|tst|t|ttfsBtt|}t|ttfsitt|}t|}t|}t|dd}t||krt||j	}|d|t|}|j
|jt|j
|jt
||dd}|dkr(t||dkr=|j}|dkrUt|d}	d}
tj}xt|	|kr
|||
jd	d
}tj|d
}
x7t|dD]%}||}|
||d
N}
qW|
d7}
|	|
j|jd
7}	qmW|	d|S)zPassword based key derivation function 2 (PKCS #5 v2.0)

        This Python implementations based on the hmac module about as fast
        as OpenSSL's PKCS5_PBKDF2_HMAC for short passwords and much faster
        for long passwords.
        Z
block_size@scSsB|j}|j}|j||j|j|jS)N)copyupdatedigest)msginnerouterZicpyZocpyrrrprfs

zpbkdf2_hmac.<locals>.prfNr%Zbig)
isinstancestr	TypeErrorbytes	bytearray
memoryviewrr lenr2r1	translate	_trans_36	_trans_5CrZdigest_sizeint
from_bytesto_bytesrange)Z	hash_nameZpasswordZsaltZ
iterationsZdklenr4r5Z	blocksizer6ZdkeyZlooprDprevZrkeyirrrr
sB			
zcode for hash %s was not found.)rrrrrr)rrr	r
)__doc__Z__always_supportedsetrr	__all__rrr$r'r(r!rZ
__get_hashunionZopenssl_md_meth_namesrr
r<rFrBrAZ__func_nameglobalsrZloggingZ	exceptionrrrr<module>5sB

: