uawdijnntqw1x1x1
IP : 13.58.84.207
Hostname : host45.registrar-servers.com
Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
.
/
..
/
lib64
/
aspell-0.60
/
..
/
NetworkManager
/
..
/
python3.8
/
__pycache__
/
base64.cpython-38.opt-1.pyc
/
/
U e5d�O�@s�dZddlZddlZddlZddddddd d ddd dddddddgZeefZdd�ZdCdd�Z dDdd�Z dd�Zdd�Ze� dd�Ze� dd�Zdd�Zdd�Zd Zdadad!d �ZdEd"d �Zd#d�ZdFd$d�Zdadad%Zd&ZdGd'd(�Zddddd)�d*d�Zddd+d,�d-d�Zd.Z da!da"da#dHd/d �Z$d0d�Z%d1Z&e&d2d3Z'd4d�Z(d5d�Z)d6d7�Z*d8d�Z+d9d:�Z,d;d�Z-d<d=�Z.d>d?�Z/d@dA�Z0e1dBk�r�e/�dS)IzDBase16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodings�N�encode�decode�encodebytes�decodebytes� b64encode� b64decode� b32encode� b32decode� b16encode� b16decode� b85encode� b85decode� a85encode� a85decode�standard_b64encode�standard_b64decode�urlsafe_b64encode�urlsafe_b64decodecCs|t|t�r4z|�d�WStk r2td��YnXt|t�rB|Szt|���WStk rvtd|j j �d�YnXdS)N�asciiz4string argument should contain only ASCII charactersz>argument should be a bytes-like object or ASCII string, not %r)� isinstance�strr�UnicodeEncodeError� ValueError�bytes_types� memoryview�tobytes� TypeError� __class__�__name__��s�r!�/usr/lib64/python3.8/base64.py�_bytes_from_decode_data"s ��r#cCs,tj|dd�}|dk r(|�t�d|��S|S)a*Encode the bytes-like object s using Base64 and return a bytes object. Optional altchars should be a byte string of length 2 which specifies an alternative alphabet for the '+' and '/' characters. This allows an application to e.g. generate url or filesystem safe Base64 strings. F)�newlineN�+/)�binascii� b2a_base64� translate�bytes� maketrans)r �altchars�encodedr!r!r"r3sFcCsNt|�}|dk r*t|�}|�t�|d��}|rDt�d|�sDt�d��t�|�S)anDecode the Base64 encoded bytes-like object or ASCII string s. Optional altchars must be a bytes-like object or ASCII string of length 2 which specifies the alternative alphabet used instead of the '+' and '/' characters. The result is returned as a bytes object. A binascii.Error is raised if s is incorrectly padded. If validate is False (the default), characters that are neither in the normal base-64 alphabet nor the alternative alphabet are discarded prior to the padding check. If validate is True, these non-alphabet characters in the input result in a binascii.Error. Nr%s[A-Za-z0-9+/]*={0,2}zNon-base64 digit found) r#r(r)r*�re� fullmatchr&�Error� a2b_base64)r r+Zvalidater!r!r"rAs cCst|�S)zrEncode bytes-like object s using the standard Base64 alphabet. The result is returned as a bytes object. )rrr!r!r"rZscCst|�S)aQDecode bytes encoded with the standard Base64 alphabet. Argument s is a bytes-like object or ASCII string to decode. The result is returned as a bytes object. A binascii.Error is raised if the input is incorrectly padded. Characters that are not in the standard alphabet are discarded prior to the padding check. )rrr!r!r"rasr%s-_cCst|��t�S)z�Encode bytes using the URL- and filesystem-safe Base64 alphabet. Argument s is a bytes-like object to encode. The result is returned as a bytes object. The alphabet uses '-' instead of '+' and '_' instead of '/'. )rr(�_urlsafe_encode_translationrr!r!r"roscCst|�}|�t�}t|�S)a�Decode bytes using the URL- and filesystem-safe Base64 alphabet. Argument s is a bytes-like object or ASCII string to decode. The result is returned as a bytes object. A binascii.Error is raised if the input is incorrectly padded. Characters that are not in the URL-safe base-64 alphabet, and are not a plus '+' or slash '/', are discarded prior to the padding check. The alphabet uses '-' instead of '+' and '_' instead of '/'. )r#r(�_urlsafe_decode_translationrrr!r!r"rxs s ABCDEFGHIJKLMNOPQRSTUVWXYZ234567cs>tdkr,dd�tD���fdd��D�ad�t|t�sBt|���}t|�d}|rb|dd|}t�}tj }t}t dt|�d�D]V}||||d�d�}|||d ?||d ?d@||d?d@||d@7}q�|d kr�d|dd�<nF|dk�rd|dd�<n.|dk�r d|dd�<n|dk�r6d|dd�<t|�S)zKEncode the bytes-like object s using Base32 and return a bytes object. NcSsg|]}t|f��qSr!�r)��.0�ir!r!r"� <listcomp>�szb32encode.<locals>.<listcomp>csg|]}�D]}||�qqSr!r!�r5�a�b�Zb32tabr!r"r7�s��r�big��i�� �s======i�����s====����s===�����=���)�_b32tab2�_b32alphabetrrrr�len� bytearray�int� from_bytes�ranger))r �leftoverr,rOZb32tab2r6�cr!r;r"r�s< �� � c Csztdkrdd�tt�D�at|�}t|�dr8t�d��|dk r^t|�}|�t� dd|��}|rj|� �}t|�}|�d�}|t|�}t�}t}t d t|�d�D]h}|||d�}d } z|D]} | d >|| } q�Wn tk r�t�d�d�YnX|| �d d�7}q�|d�s |d k�r*t�d��|�rr|�rr| d |K} | �d d�}dd |d}|d|�|dd�<t|�S)aZDecode the Base32 encoded bytes-like object or ASCII string s. Optional casefold is a flag specifying whether a lowercase alphabet is acceptable as input. For security purposes, the default is False. RFC 3548 allows for optional mapping of the digit 0 (zero) to the letter O (oh), and for optional mapping of the digit 1 (one) to either the letter I (eye) or letter L (el). The optional argument map01 when not None, specifies which letter the digit 1 should be mapped to (when map01 is not None, the digit 0 is always mapped to the letter O). For security purposes the default is None, so that 0 and 1 are not allowed in the input. The result is returned as a bytes object. A binascii.Error is raised if the input is incorrectly padded or if there are non-alphabet characters present in the input. NcSsi|]\}}||�qSr!r!)r5�k�vr!r!r"� <dictcomp>�szb32decode.<locals>.<dictcomp>�zIncorrect paddings01�OrHrr<zNon-base32 digit foundr>>rrBrErG��+���)�_b32rev� enumeraterKr#rLr&r/r(r)r*�upper�rstriprMrP�KeyError�to_bytes) r �casefoldZmap01�lZpadchars�decodedZb32revr6Zquanta�accrRZlastrQr!r!r"r �s@ cCst�|���S)zKEncode the bytes-like object s using Base16 and return a bytes object. )r&Zhexlifyr]rr!r!r"r �scCs4t|�}|r|��}t�d|�r*t�d��t�|�S)a�Decode the Base16 encoded bytes-like object or ASCII string s. Optional casefold is a flag specifying whether a lowercase alphabet is acceptable as input. For security purposes, the default is False. The result is returned as a bytes object. A binascii.Error is raised if s is incorrectly padded or if there are non-alphabet characters present in the input. s [^0-9A-F]zNon-base16 digit found)r#r]r-�searchr&r/Z unhexlify)r rar!r!r"r�s s<~s~>c s�t|t�st|���}t|�d}|r4|d|}t�dt|�d��|�}����fdd�|D�}|r�|s�|ddkr��dd |d<|dd|�|d<d �|�S)NrGr=z!%dIcsPg|]H}�r|sdn6�r$|dkr$dn&�|d�|dd�|d�qS)�zi �yi�^ �Ui9r!)r5Zword��chars�chars2�foldnuls� foldspacesr!r"r7!s� � �z_85encode.<locals>.<listcomp>rIrfrr<�) rrrrrL�struct�StructZunpack�join) r:rjrk�padrlrm�paddingZwords�chunksr!rir"� _85encodes �ru)rm�wrapcolrr�adobecs�tdkr*dd�tdd�D�add�tD�at|tt|d|��|rHt���r�t|rVdnd �����fd d�tdt����D�}|r�t|d�d�kr�|�d �d�|��|r��t 7��S)a�Encode bytes-like object b using Ascii85 and return a bytes object. foldspaces is an optional flag that uses the special short sequence 'y' instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This feature is not supported by the "standard" Adobe encoding. wrapcol controls whether the output should have newline (b'\n') characters added to it. If this is non-zero, each output line will be at most this many characters long. pad controls whether the input is padded to a multiple of 4 before encoding. Note that the btoa implementation always pads. adobe controls whether the encoded byte sequence is framed with <~ and ~>, which is used by the Adobe implementation. NcSsg|]}t|f��qSr!r3r4r!r!r"r7Dsza85encode.<locals>.<listcomp>�!�vcSsg|]}tD]}||�qqSr!)� _a85charsr8r!r!r"r7EsTrCrBcsg|]}�||���qSr!r!r4��resultrvr!r"r7Ms�rrIrn� ) � _a85chars2rPrzru� _A85START�maxrL�appendrq�_A85END)r:rmrvrrrwrtr!r{r"r/s$� s )rmrw�ignorecharsc Cs�t|�}|rH|�t�s$td�t���|�t�r<|dd�}n|dd�}t�d�j }g}|j }g}|j }|j} |dD]�} d| kr�dkr�nnl|| �t|�d kr�d }|D]} d|| d}q�z|||��Wn tj k r�td�d�YnX| �qv| d k�r |�rtd��|d�qv|�rH| dk�rH|�r>td��|d�qv| |k�rVqvqvtd| ��qvd�|�}dt|�} | �r�|d| �}|S)a�Decode the Ascii85 encoded bytes-like object or ASCII string b. foldspaces is a flag that specifies whether the 'y' short sequence should be accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is not supported by the "standard" Adobe encoding. adobe controls whether the input sequence is in Adobe Ascii85 format (i.e. is framed with <~ and ~>). ignorechars should be a byte string containing characters to ignore from the input. This should only contain whitespace characters, and by default contains all whitespace characters in ASCII. The result is returned as a bytes object. z1Ascii85 encoded byte sequences must end with {!r}rC���N�!Isuuuurx�ur<rrhzAscii85 overflow�zzz inside Ascii85 5-tuples�yzy inside Ascii85 5-tuples zNon-Ascii85 digit found: %crnrG)r#�endswithr�r�format� startswithrrorp�packr��clearrL�errorrq)r:rmrwr��packIrcZdecoded_appendZcurrZcurr_appendZ curr_clear�xrdr|rsr!r!r"rXsZ �� sU0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~cCs2tdkr$dd�tD�add�tD�at|tt|�S)z�Encode bytes-like object b in base85 format and return a bytes object. If pad is true, the input is padded with b'\0' so its length is a multiple of 4 bytes before encoding. NcSsg|]}t|f��qSr!r3r4r!r!r"r7�szb85encode.<locals>.<listcomp>cSsg|]}tD]}||�qqSr!)� _b85charsr8r!r!r"r7�s)� _b85chars2�_b85alphabetr�ru)r:rrr!r!r"r�s c CsJtdkr,dgdatt�D]\}}|t|<qt|�}t|�d}|d|}g}t�d�j}tdt|�d�D]�}|||d�}d}z|D]}|dt|}q�WnFt k r�t|�D]&\}}t|dkr�t d||�d�q��YnXz|�||��Wqntjk �r$t d |�d�YqnXqnd � |�} |�rF| d|�} | S)zqDecode the base85-encoded bytes-like object or ASCII string b The result is returned as a bytes object. N�r<�~r�rrhz#bad base85 character at position %dz+base85 overflow in hunk starting at byte %drn)�_b85decr\r�r#rLrorpr�rPrrr�r�rq) r:r6rRrs�outr��chunkrd�jr|r!r!r"r �sH ���� �LrGrEcCsX|�t�}|sqTt|�tkr>|�tt|��}|s4q>||7}qt�|�}|�|�qdS)z1Encode a file; input and output are binary files.N)�read� MAXBINSIZErLr&r'�write)�input�outputr �ns�liner!r!r"r�s cCs(|��}|sq$t�|�}|�|�qdS)z1Decode a file; input and output are binary files.N)�readliner&r0r�)r�r�r�r r!r!r"r�s c Cs�zt|�}Wn8tk rD}zd|jj}t|�|�W5d}~XYnX|jdkrjd|j|jjf}t|��|jdkr�d|j|jjf}t|��dS)Nz"expected bytes-like object, not %s)rRr:�Bz-expected single byte elements, not %r from %srBz(expected 1-D data, not %d-D data from %s)rrrrr��ndim)r �m�err�msgr!r!r"�_input_type_check�s � �r�cCsLt|�g}tdt|�t�D]$}|||t�}|�t�|��qd�|�S)zVEncode a bytestring into a bytes object containing multiple lines of base-64 data.rrn)r�rPrLr�r�r&r'rq)r �piecesr6r�r!r!r"rscCsddl}|�dtd�t|�S)zLegacy alias of encodebytes().rNzAencodestring() is a deprecated alias since 3.1, use encodebytes()rC)�warnings�warn�DeprecationWarningr�r r�r!r!r"�encodestrings�r�cCst|�t�|�S)z8Decode a bytestring of base-64 data into a bytes object.)r�r&r0rr!r!r"rscCsddl}|�dtd�t|�S)zLegacy alias of decodebytes().rNzHdecodestring() is a deprecated alias since Python 3.1, use decodebytes()rC)r�r�r�rr�r!r!r"�decodestring$s�r�c Csddl}ddl}z|�|jdd�d�\}}WnP|jk r~}z0|j|_t|�td|jd�|�d�W5d}~XYnXt}|D]@\}}|dkr�t}|dkr�t }|d kr�t }|d kr�t �dSq�|�r|ddk�rt|dd��}|||jj�W5QRXn||j j|jj�dS) zSmall main programrNrBZdeutz�usage: %s [-d|-e|-u|-t] [file|-] -d, -u: decode -e: encode (default) -t: encode and decode string 'Aladdin:open sesame'rCz-ez-dz-uz-t�-�rb)�sys�getopt�argvr��stderr�stdout�print�exitrr�test�open�buffer�stdin) r�r�Zopts�argsr��func�or9�fr!r!r"�main.s2�r�cCs<d}tt|��t|�}tt|��t|�}tt|��dS)NsAladdin:open sesame)r��reprrr)Zs0�s1�s2r!r!r"r�Hsr��__main__)N)NF)FN)F)FFF)F)2�__doc__r-ror&�__all__r)rMrr#rrrrr*r1r2rrrKrJr[rr r rrzr~rr�rurrr�r�r�r�rr ZMAXLINESIZEr�rrr�rr�rr�r�r�rr!r!r!r"�<module>s�� & C )H -
/home/./../lib64/aspell-0.60/../NetworkManager/../python3.8/__pycache__/base64.cpython-38.opt-1.pyc