%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/__pycache__/base64.cpython-38.pyc

U

naO@sdZddlZddlZddlZddddddd	d
ddd
dddddddgZeefZddZdCddZ	dDddZ
ddZddZe
ddZe
ddZddZddZd Zdadad!d	ZdEd"d
Zd#dZdFd$dZdadad%Zd&ZdGd'd(Zddddd)d*dZddd+d,d-dZd.Z da!da"da#dHd/d
Z$d0dZ%d1Z&e&d2d3Z'd4dZ(d5dZ)d6d7Z*d8dZ+d9d:Z,d;dZ-d<d=Z.d>d?Z/d@dAZ0e1dBkre/dS)IzDBase16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodingsNencodedecodeencodebytesdecodebytes	b64encode	b64decode	b32encode	b32decode	b16encode	b16decode	b85encode	b85decode	a85encode	a85decodestandard_b64encodestandard_b64decodeurlsafe_b64encodeurlsafe_b64decodecCs|t|tr4z|dWStk
r2tdYnXt|trB|Szt|WStk
rvtd|j	j
dYnXdS)Nasciiz4string argument should contain only ASCII charactersz>argument should be a bytes-like object or ASCII string, not %r)
isinstancestrrUnicodeEncodeError
ValueErrorbytes_types
memoryviewtobytes	TypeError	__class____name__sr!"/usr/local/lib/python3.8/base64.py_bytes_from_decode_data"s

r#cCsDtj|dd}|dk	r@t|dks.tt||td|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_base64lenAssertionErrorrepr	translatebytes	maketrans)r altcharsencodedr!r!r"r3s
FcCsft|}|dk	rBt|}t|dks0tt||t|d}|r\td|s\t	
dt	|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%r&s[A-Za-z0-9+/]*={0,2}zNon-base64 digit found)r#r)r*r+r,r-r.re	fullmatchr'Error
a2b_base64)r r/validater!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|tS)zEncode 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)aDecode 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,ddtDfddDadt|tsBt|}t|d}|rb|dd|}t}tj	}t}t
dt|dD]V}||||dd}|||d	?||d
?d@||d?d@||d@7}q|d
krd|dd<nF|dkrd|dd<n.|dkr d|dd<n|dkr6d|dd<t|S)zKEncode the bytes-like object s using Base32 and return a bytes object.
    NcSsg|]}t|fqSr!r-.0ir!r!r"
<listcomp>szb32encode.<locals>.<listcomp>csg|]}D]}||qqSr!r!r:abZb32tabr!r"r<srbigi
s======ir%s====s====)_b32tab2_b32alphabetrrrrr)	bytearrayint
from_bytesranger-)r leftoverr0rRZb32tab2r;cr!r@r"rs<




c
	CstdkrddttDat|}t|dr8td|dk	rvt|}t|dks`tt||	t
dd|}|r|}t|}|
d	}|t|}t}t}td
t|dD]j}|||d}d
}	z|D]}
|	d>||
}	qWn"tk
rtddYnX||	dd
7}q|ds:|dkrDtd|r|r|	d|K}	|	dd
}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!)r:kvr!r!r"
<dictcomp>szb32decode.<locals>.<dictcomp>zIncorrect paddingrGs01OrLrrAzNon-base32 digit foundrC>rrGrIrK+)_b32rev	enumeraterOr#r)r'r3r*r+r,r-r.upperrstriprPrSKeyErrorto_bytes)
r casefoldZmap01lZpadcharsdecodedZb32revr;ZquantaaccrUZlastrTr!r!r"r	sB


cCst|S)zKEncode the bytes-like object s using Base16 and return a bytes object.
    )r'Zhexlifyr`rr!r!r"r
scCs4t|}|r|}td|r*tdt|S)aDecode 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`r1searchr'r3Z	unhexlify)r rdr!r!r"rs

s<~s~>c	st|tst|}t|d}|r4|d|}tdt|d|}fdd|D}|r|s|ddkrdd	|d<|dd||d<d
|S)NrKrBz!%dIcsPg|]H}r|sdn6r$|dkr$dn&|d|dd|dqS)zi    yi^	Ui9r!)r:Zwordcharschars2foldnuls
foldspacesr!r"r<!s

z_85encode.<locals>.<listcomp>rMrirrA)	rrrrr)structStructunpackjoin)	r?rmrnpadrorppaddingZwordschunksr!rlr"	_85encodes
ry)rpwrapcolrvadobecstdkr*ddtddDaddtDat|tt|d||rHtrt|rVdnd	fd
dtdtD}|rt|ddkr|d
d||rt	7S)aEncode 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|fqSr!r8r9r!r!r"r<Dsza85encode.<locals>.<listcomp>!vcSsg|]}tD]}||qqSr!)	_a85charsr=r!r!r"r<EsTr%rGcsg|]}||qSr!r!r9resultrzr!r"r<MsrrMrq
)

_a85chars2rSr~ry	_A85STARTmaxr)appendru_A85END)r?rprzrvr{rxr!rr"r/s$

s 	

)rpr{ignorecharsc	Cst|}|rH|ts$tdt|tr<|dd}n|dd}tdj	}g}|j
}g}|j
}|j}	|dD]}
d|
krdkrnnl||
t|d	krd
}|D]}
d||
d}qz|||Wn tj
k
rtddYnX|	qv|
d
kr |rtd|dqv|rH|
dkrH|r>td|dqv|
|krVqvqvtd|
qvd|}dt|}
|
r|d|
}|S)aDecode 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}r%N!Isuuuur|urArrkzAscii85 overflowzzz inside Ascii85 5-tuplesyzy inside Ascii85 5-tuples    zNon-Ascii85 digit found: %crqrK)r#endswithrrformat
startswithrrrrspackrclearr)errorru)r?rpr{rpackIrfZdecoded_appendZcurrZcurr_appendZ
curr_clearxrgrrwr!r!r"rXsZ






sU0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~cCs2tdkr$ddtDaddtDat|tt|S)zEncode 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|fqSr!r8r9r!r!r"r<szb85encode.<locals>.<listcomp>cSsg|]}tD]}||qqSr!)	_b85charsr=r!r!r"r<s)
_b85chars2_b85alphabetrry)r?rvr!r!r"rs	c
	CsJtdkr,dgdattD]\}}|t|<qt|}t|d}|d|}g}tdj}tdt|dD]}|||d}d}z|D]}|dt|}qWnFt	k
rt|D]&\}}t|dkrt
d||dqYnXz|||Wqntjk
r$t
d	|dYqnXqnd

|}	|rF|	d|}	|	S)zqDecode the base85-encoded bytes-like object or ASCII string b

    The result is returned as a bytes object.
    NrA~rrrkz#bad base85 character at position %dz+base85 overflow in hunk starting at byte %drq)_b85decr_rr#r)rrrsrrSrrrrru)
r?r;rUrwoutrchunkrgjrr!r!r"r
sH



LrKrIcCsX|t}|sqTt|tkr>|tt|}|s4q>||7}qt|}||qdS)z1Encode a file; input and output are binary files.N)read
MAXBINSIZEr)r'r(write)inputoutputr nsliner!r!r"rs


cCs(|}|sq$t|}||qdS)z1Decode a file; input and output are binary files.N)readliner'r4r)rrrr r!r!r"rs

c
Cszt|}Wn8tk
rD}zd|jj}t||W5d}~XYnX|jdkrjd|j|jjf}t||jdkrd|j|jjf}t|dS)Nz"expected bytes-like object, not %s)rUr?Bz-expected single byte elements, not %r from %srGz(expected 1-D data, not %d-D data from %s)rrrrrndim)r merrmsgr!r!r"_input_type_checks

rcCsLt|g}tdt|tD]$}|||t}|t|qd|S)zVEncode a bytestring into a bytes object containing multiple lines
    of base-64 data.rrq)rrSr)rrr'r(ru)r piecesr;rr!r!r"rscCsddl}|dtdt|S)zLegacy alias of encodebytes().rNzAencodestring() is a deprecated alias since 3.1, use encodebytes()r%)warningswarnDeprecationWarningrr rr!r!r"encodestringsrcCst|t|S)z8Decode a bytestring of base-64 data into a bytes object.)rr'r4rr!r!r"rscCsddl}|dtdt|S)zLegacy alias of decodebytes().rNzHdecodestring() is a deprecated alias since Python 3.1, use decodebytes()r%)rrrrrr!r!r"decodestring$src	
Csddl}ddl}z||jddd\}}WnP|jk
r~}z0|j|_t|td|jd|dW5d}~XYnXt}|D]@\}}|dkrt}|dkrt	}|d	krt	}|d
krt
dSq|r|ddkrt|dd}|||jjW5QRXn||j
j|jjdS)
zSmall main programrNrGZdeutzusage: %s [-d|-e|-u|-t] [file|-]
        -d, -u: decode
        -e: encode (default)
        -t: encode and decode string 'Aladdin:open sesame'r%z-ez-dz-uz-t-rb)sysgetoptargvrstderrstdoutprintexitrrtestopenbufferstdin)	rrZoptsargsrfuncor>fr!r!r"main.s2rcCsHd}tt|t|}tt|t|}tt|||ksDtdS)NsAladdin:open sesame)rr+rrr*)Zs0s1s2r!r!r"rHsr__main__)N)NF)FN)F)FFF)F)2__doc__r1rrr'__all__r-rPrr#rrrrr.r6r7rrrOrNr^rr	r
rr~rrrryrrrrrrrr
ZMAXLINESIZErrrrrrrrrrrr!r!r!r"<module>s

	&
C

)H
-	
	




Zerion Mini Shell 1.0