U &.e @svdZdZeeZeeZedZddddddd d hZzd d lmZ Wne k r`d dZ YnXe stiZ ddZ ddZ e sdddZdddZz d dlZeZe ZeejZWn$e k re r΂eZe ZYnXd dlmZzd dlmZWne k rYnXeD]DZzeeee<Wn*ek rTd dlZedeYnXq[[[[[ esp[[ dS)a3hashlib module - A common interface to many hash functions. new(name, data=b'', **kwargs) - 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(), sha512(), blake2b(), blake2s(), sha3_224, sha3_256, sha3_384, sha3_512, shake_128, and shake_256. 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(data): Update the hash object with the bytes in data. 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 as a bytes object. - hexdigest(): Like digest() except the digest is returned as a string 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 datas that share a common initial substring. For example, to obtain the digest of the byte 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' )md5sha1sha224sha256sha384sha512blake2bblake2ssha3_224sha3_256sha3_384sha3_512 shake_128 shake_256)newalgorithms_guaranteedalgorithms_available pbkdf2_hmacr r r r r rrr) get_fips_modecCsdS)Nrrrr/usr/lib64/python3.8/hashlib.py_hashlib_get_fips_modeQsrc Cst}||}|dk r|SzB|dkrDddl}|j|d<|d<n|dkrhddl}|j|d<|d<n|dkrddl}|j|d <|d <|j|d <|d <n|d krddl }|j |d<|d<|j |d<|d<n|dkrddl }|j |d<|j|d<nb|dkr6ddl}|j|d<|j|d<|j|d<|j|d<n&|dkr\ddl}|j|d<|j|d<Wntk rtYnX||}|dk r|Std|dS)N>rSHA1rrr>MD5rrr>rSHA224rSHA256rrrr>rSHA512SHA384rrrrr>rrrr>r r r r r r r r >r rr rzunsupported hash type )__builtin_constructor_cacheget_sha1r_md5r_sha256rr_sha512rr_blake2rr_sha3r r r r r r ImportError ValueError) namecache constructorr r!r"r#r$r%rrr__get_builtin_constructorWsN            r+c Cs^ts|tkrt|Sz"ttd|}ts4||WSttfk rXt|YSXdS)NZopenssl_)r__block_openssl_constructorr+getattr_hashlibrAttributeErrorr')r(frrr__get_openssl_constructorsr1cKst||f|S)znew(name, data=b'', **kwargs) - Return a new hashing object using the named algorithm; optionally initialized with data (which must be a bytes-like object). )r+r(datakwargsrrr__py_newsr6cKsfts |tkr t||f|Sztj||f|WStk r`trLt||f|YSXdS)znew(name, data=b'') - Return a new hashing object using the named algorithm; optionally initialized with data (which must be a bytes-like object). N)r.rr,r+rr'r3rrr __hash_newsr7N)r)scryptzcode for hash %s was not found.)r2)r2)__doc__Z__always_supportedsetrr__all__r,r.rrr&rr+r1r6r7rZ __get_hashunionZopenssl_md_meth_namesrr8Z __func_nameglobalsr'ZloggingZ exceptionrrrrsh5,