Server : LiteSpeed
System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User : nandedex ( 1060)
PHP Version : 8.1.33
Disable Function : NONE
Directory :  /opt/cppython/lib/python3.8/site-packages/paramiko/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : //opt/cppython/lib/python3.8/site-packages/paramiko/__pycache__/pkey.cpython-38.pyc
U

P��g��@sTdZddlZddlmZmZddlmZddlZddlmZddl	m
Z
mZddlZddl
Z
ddlZddlmZddlmZmZdd	lmZmZmZdd
lmZddlmZddlmZmZdd
lmZddl m!Z!m"Z"ddl#m$Z$zddl%m&Z&Wn"e'k
�rddl(m&Z&YnXdZ)dd�Z*Gdd�de+�Z,Gdd�d�Z-Gdd�d�Z.dS)z!
Common API for all public keys.
�N)�encodebytes�decodebytes)�	unhexlify)�Path)�md5�sha256)�default_backend)�padding�
serialization)�
algorithms�modes�Cipher)�
asymmetric)�util)�u�b)�o600)�SSHException�PasswordRequiredException)�Message)�	TripleDESsopenssh-key-v1cCsl|d}d|krdkr$nn|S|dkr4td��t|�D] }||||dkr<td��q<|d|�S)N���� ��zInvalid key�)r�range)�dataZpadding_length�i�r�:/opt/cppython/lib/python3.8/site-packages/paramiko/pkey.py�_unpad_openssh?s
r!c@s"eZdZdZddd�Zdd�ZdS)�UnknownKeyTypezK
    An unknown public/private key algorithm was attempted to be read.
    NcCs||_||_dS�N��key_type�	key_bytes)�selfr%r&rrr �__init__SszUnknownKeyType.__init__cCsd|j�dt|j��d�S)NzUnknownKeyType(type=z	, bytes=<z>))r%�lenr&�r'rrr �__str__WszUnknownKeyType.__str__)NN)�__name__�
__module__�__qualname__�__doc__r(r+rrrr r"Ns
r"c@s�eZdZdZejddejd�ejddejd�eddejd�d�Z	dZ
d	Ze�
d
�Ze�
d�ZedOd
d��Zedd��Zedd��ZdPdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zedd ��Zd!d"�Zed#d$��Zd%d&�Zd'd(�Z d)d*�Z!ed+d,��Z"d-d.�Z#dQd/d0�Z$d1d2�Z%edRd3d4��Z&edSd5d6��Z'dTd7d8�Z(dUd9d:�Z)dVd;d<�Z*dWd=d>�Z+d?d@�Z,dAdB�Z-dCdD�Z.dEdF�Z/dXdGdH�Z0dYdIdJ�Z1dKdL�Z2dMdN�Z3dS)Z�PKeyz�
    Base class for public keys.

    Also includes some "meta" level convenience constructors such as
    `.from_type_string`.
    �)�cipher�keysize�	blocksize�moder��)zAES-128-CBCzAES-256-CBCzDES-EDE3-CBCr�z3^-{5}BEGIN (RSA|DSA|EC|OPENSSH) PRIVATE KEY-{5}\s*$z1^-{5}END (RSA|DSA|EC|OPENSSH) PRIVATE KEY-{5}\s*$Nc	CsNddlm}m}m}m}t|�}d}t|��|�rJ|dt|��}|}n|}||}t|��	�}t|��	�}|�
�}	ztj|	|d�}
Wn"t
k
r�tj|	|d�}
YnXd}t|
tjj�r�|}nLt|
tjj�r�|}n8t|
tjj�r�|}n$t|
tjj��r|}nt|	|
jd��|���}|j||d�}
W5QRX|���rJ|
�t|��|
S)aV
        Attempt to instantiate appropriate key subclass from given file path.

        :param Path path: The path to load (may also be a `str`).

        :returns:
            A `PKey` subclass instance.

        :raises:
            `UnknownKeyType`, if our crypto backend doesn't know this key type.

        .. versionadded:: 3.2
        r)�DSSKey�RSAKey�
Ed25519Key�ECDSAKeyz	-cert.pubN)r�password)r&r%�r=)�paramikor9r:r;r<�str�endswithr)r�
expanduser�
read_bytesr
Zload_ssh_private_key�
ValueErrorZload_pem_private_key�
isinstancerZdsaZ
DSAPrivateKey�rsaZ
RSAPrivateKeyZed25519ZEd25519PrivateKey�ecZEllipticCurvePrivateKeyr"�	__class__�open�from_private_key�exists�load_certificate)�pathZ
passphraser9r:r;r<Zcert_suffixZkey_pathZ	cert_pathrZloaded�	key_class�fd�keyrrr �	from_pathsH�
�

zPKey.from_pathcCs@ddlm}|D]}||��kr||d�Sqt||d��dS)av
        Given type `str` & raw `bytes`, return a `PKey` subclass instance.

        For example, ``PKey.from_type_string("ssh-ed25519", <public bytes>)``
        will (if successful) return a new `.Ed25519Key`.

        :param str key_type:
            The key type, eg ``"ssh-ed25519"``.
        :param bytes key_bytes:
            The raw byte data forming the key material, as expected by
            subclasses' ``data`` parameter.

        :returns:
            A `PKey` subclass instance.

        :raises:
            `UnknownKeyType`, if no registered classes knew about this type.

        .. versionadded:: 3.2
        r)�key_classes)rr$N)r?rR�identifiersr")r%r&rRrNrrr �from_type_string�s
zPKey.from_type_stringcCs|jgS)z�
        returns an iterable of key format/name strings this class can handle.

        Most classes only have a single identifier, and thus this default
        implementation suffices; see `.ECDSAKey` for one example of an
        override.
        )�name)�clsrrr rS�s	zPKey.identifierscCsdS)aV
        Create a new instance of this public key type.  If ``msg`` is given,
        the key's public part(s) will be filled in from the message.  If
        ``data`` is given, the key's public part(s) will be filled in from
        the string.

        :param .Message msg:
            an optional SSH `.Message` containing a public key of this type.
        :param bytes data:
            optional, the bytes of a public key of this type

        :raises: `.SSHException` --
            if a key cannot be created from the ``data`` or ``msg`` given, or
            no key was passed in.
        Nr)r'�msgrrrr r(�sz
PKey.__init__cCsDd}t|d�r |jr d|j��}d|j�d|���d|j�|�d�S)N��commentz
, comment=z	PKey(alg=z, bits=z, fp=�))�hasattrrY�algorithm_name�get_bits�fingerprint)r'rYrrr �__repr__sz
PKey.__repr__cCst�S)z�
        Return a string of an SSH `.Message` made up of the public part(s) of
        this key.  This string is suitable for passing to `__init__` to
        re-create the key object later.
        ��bytesr*rrr �asbytesszPKey.asbytescCs|��Sr#)rbr*rrr �	__bytes__ szPKey.__bytes__cCst|t�o|j|jkSr#)rEr0�_fields�r'�otherrrr �__eq__#szPKey.__eq__cCs
t|j�Sr#)�hashrdr*rrr �__hash__&sz
PKey.__hash__cCst�dSr#)�NotImplementedErrorr*rrr rd)szPKey._fieldscCsdS)z�
        Return the name of this private key implementation.

        :return:
            name of this private key type, in SSH terminology, as a `str` (for
            example, ``"ssh-rsa"``).
        rXrr*rrr �get_name-sz
PKey.get_namecCs@|���dd�}d}||kr*|�|d�}n|�d�d}|��S)z�
        Return the key algorithm identifier for this key.

        Similar to `get_name`, but aimed at pure algorithm name instead of SSH
        protocol field value.
        zssh-rXz-cert-v01@openssh.comz-cert�-r)rk�replace�split�upper)r'rUZ	cert_tailrrr r\7s
zPKey.algorithm_namecCsdS)z�
        Return the number of significant bits in this key.  This is useful
        for judging the relative security of a key.

        :return: bits in the key (as an `int`)
        rrr*rrr r]Ks	z
PKey.get_bitscCsdS)zf
        Return ``True`` if this key has the private part necessary for signing
        data.
        Frr*rrr �can_signVsz
PKey.can_signcCst|�����S)z�
        Return an MD5 fingerprint of the public part of this key.  Nothing
        secret is revealed.

        :return:
            a 16-byte `string <str>` (binary) of the MD5 fingerprint, in SSH
            format.
        )rrb�digestr*rrr �get_fingerprint]s	zPKey.get_fingerprintcCsBtt|��}|j��}t|���}t|����d�}|�d|��S)z�
        Modern fingerprint property designed to be comparable to OpenSSH.

        Currently only does SHA256 (the OpenSSH default).

        .. versionadded:: 3.2
        �=�:)	rrarUrorrqr�strip�rstrip)r'Zhashy�	hash_nameZb64ed�cleanedrrr r^hs
	
zPKey.fingerprintcCstt|�����dd�S)a+
        Return a base64 string containing the public part of this key.  Nothing
        secret is revealed.  This format is compatible with that used to store
        public key files or recognized host keys.

        :return: a base64 `string <str>` containing the public part of the key.
        �
rX)rrrbrmr*rrr �
get_base64wszPKey.get_base64cCst�S)a�
        Sign a blob of data with this private key, and return a `.Message`
        representing an SSH signature message.

        :param bytes data:
            the data to sign.
        :param str algorithm:
            the signature algorithm to use, if different from the key's
            internal name. Default: ``None``.
        :return: an SSH signature `message <.Message>`.

        .. versionchanged:: 2.9
            Added the ``algorithm`` kwarg.
        r`)r'r�	algorithmrrr �
sign_ssh_data�szPKey.sign_ssh_datacCsdS)a^
        Given a blob of data, and an SSH message representing a signature of
        that data, verify that it was signed with this key.

        :param bytes data: the data that was signed.
        :param .Message msg: an SSH signature message
        :return:
            ``True`` if the signature verifies correctly; ``False`` otherwise.
        Fr)r'rrWrrr �verify_ssh_sig�s
zPKey.verify_ssh_sigcCs|||d�}|S)a�
        Create a key object by reading a private key file.  If the private
        key is encrypted and ``password`` is not ``None``, the given password
        will be used to decrypt the key (otherwise `.PasswordRequiredException`
        is thrown).  Through the magic of Python, this factory method will
        exist in all subclasses of PKey (such as `.RSAKey` or `.DSSKey`), but
        is useless on the abstract PKey class.

        :param str filename: name of the file to read
        :param str password:
            an optional password to use to decrypt the key file, if it's
            encrypted
        :return: a new `.PKey` based on the given private key

        :raises: ``IOError`` -- if there was an error reading the file
        :raises: `.PasswordRequiredException` -- if the private key file is
            encrypted, and ``password`` is ``None``
        :raises: `.SSHException` -- if the key file is invalid
        )�filenamer=r)rVr~r=rPrrr �from_private_key_file�szPKey.from_private_key_filecCs|||d�}|S)a
        Create a key object by reading a private key from a file (or file-like)
        object.  If the private key is encrypted and ``password`` is not
        ``None``, the given password will be used to decrypt the key (otherwise
        `.PasswordRequiredException` is thrown).

        :param file_obj: the file-like object to read from
        :param str password:
            an optional password to use to decrypt the key, if it's encrypted
        :return: a new `.PKey` based on the given private key

        :raises: ``IOError`` -- if there was an error reading the key
        :raises: `.PasswordRequiredException` --
            if the private key file is encrypted, and ``password`` is ``None``
        :raises: `.SSHException` -- if the key file is invalid
        )�file_objr=r)rVr�r=rPrrr rJ�szPKey.from_private_keycCstd��dS)a�
        Write private key contents into a file.  If the password is not
        ``None``, the key is encrypted before writing.

        :param str filename: name of the file to write
        :param str password:
            an optional password to use to encrypt the key file

        :raises: ``IOError`` -- if there was an error writing the file
        :raises: `.SSHException` -- if the key is invalid
        �Not implemented in PKeyN��	Exception)r'r~r=rrr �write_private_key_file�szPKey.write_private_key_filecCstd��dS)a�
        Write private key contents into a file (or file-like) object.  If the
        password is not ``None``, the key is encrypted before writing.

        :param file_obj: the file-like object to write into
        :param str password: an optional password to use to encrypt the key

        :raises: ``IOError`` -- if there was an error writing to the file
        :raises: `.SSHException` -- if the key is invalid
        r�Nr�)r'r�r=rrr �write_private_key�szPKey.write_private_keyc	Cs(t|d��}|�|||�}W5QRX|S)a�
        Read an SSH2-format private key file, looking for a string of the type
        ``"BEGIN xxx PRIVATE KEY"`` for some ``xxx``, base64-decode the text we
        find, and return it as a string.  If the private key is encrypted and
        ``password`` is not ``None``, the given password will be used to
        decrypt the key (otherwise `.PasswordRequiredException` is thrown).

        :param str tag: ``"RSA"`` or ``"DSA"``, the tag used to mark the
            data block.
        :param str filename: name of the file to read.
        :param str password:
            an optional password to use to decrypt the key file, if it's
            encrypted.
        :return: the `bytes` that make up the private key.

        :raises: ``IOError`` -- if there was an error reading the file.
        :raises: `.PasswordRequiredException` -- if the private key file is
            encrypted, and ``password`` is ``None``.
        :raises: `.SSHException` -- if the key file is invalid.
        �r)rI�_read_private_key)r'�tagr~r=�frrrr �_read_private_key_file�szPKey._read_private_key_filecCs2|��}|std�|���d}|j�||�}t|�d}||kr`|s`|d7}|j�||�}q:|d7}|rv|�d�nd}|t|�ks�|dkr�td�|���|}	|j�||	�}|	|kr�|s�|	d7}	|j�||	�}q�||kr�|�||	|�}
|j	}n6|dk�r|�
|||	�|�}
|j}ntd�||���||
fS)Nzno lines in {} private key filerrznot a valid {} private key fileZOPENSSHz#encountered {} key, expected {} key)�	readlinesr�format�	BEGIN_TAG�matchr)�group�END_TAG�_read_private_key_pem�_PRIVATE_KEY_FORMAT_ORIGINAL�_read_private_key_openssh�_PRIVATE_KEY_FORMAT_OPENSSH)r'r�r�r=�lines�start�m�
line_range�keytype�endrZpkformatrrr r�s8

�zPKey._read_private_keycCsd}t|�|jj|���dS)Nz={}._read_private_key() spat out an unknown key format id '{}')rr�rHr,)r'Zid_�errrrr �_got_bad_key_format_id%szPKey._got_bad_key_format_idc
Cs�d}i}|d7}|t|�krZ||�d�}t|�dkr8qZ|d��||d��<|d7}qzttd�|||����}Wn4tjj	k
r�}zt
d�|���W5d}~XYnXd|kr�|S|d}	|	dkr�t
d�|	���z|d	�d
�\}
}Wnt
d��YnX|
|jk�rt
d�|
���|dk�r0t
d
��|j|
d}|j|
d}
|j|
d}tt|��}t�t|||
�}t||�||�t�d���}|�|�|��}t�|j���}z|�|�|��WStk
�r�t
d��YnXdS)Nrrz: rX�base64 decoding error: {}z	proc-typez4,ENCRYPTEDz"Unknown private key structure "{}"zdek-info�,z(Can't parse DEK-info in private key filezUnknown private key cipher "{}"zPrivate key file is encryptedr2r3r5)�backendz(Bad password or corrupt private key file)r)rnru�lowerrr�join�base64�binascii�Errorrr��
_CIPHER_TABLErrrZgenerate_key_bytesrr
r�	decryptor�update�finalizer	ZPKCS7�
block_size�unpadderrD)r'r�r�r=r��headers�liner�eZ	proc_typeZencryption_typeZsaltstrr2r3r5�saltrPr�Zdecrypted_datar�rrr r�)s\
 ��
�
zPKey._read_private_key_pemc
Cs�zttd�|���}Wn4tjjk
rJ}ztd�|���W5d}~XYnX|dd�}|tkrhtd��|�	|dd�d�}|\}}}	}
}|
dkr�td��|�	|d	�\}}
|td
�k�r~|td�kr�t
j}n(|td�kr�t
j}ntd
�|�
d����|dk�rtd��|�	|	d�\}}tjt|�t|�d|dd�}|dd�}|dd�}tt�|�||�t����}|�|
�}||��7}n*|td�k�r�|td�k�r�|
}ntd��|�	|d�}|\}}}}||k�r�td��t|�S)z�
        Read the new OpenSSH SSH2 private key format available
        since OpenSSH version 6.5
        Reference:
        https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.key
        rXr�Nrz)unexpected OpenSSH key header encounteredZsssurrz.unsupported: private keyfile has multiple keys�ss�bcryptz
aes256-cbcz
aes256-ctrz,unknown cipher `{}` used in private key filezutf-8zprivate key file is encryptedZsu�0T)Zignore_few_roundsr�nonez.unknown cipher or kdf used in private key fileZuusrz/OpenSSH private key file checkints do not match)rrr�r�r�r�rr��OPENSSH_AUTH_MAGIC�_uint32_cstruct_unpackr�CBCZCTR�decoderr�Zkdfr
r�AESrr�r�r�r!)r'r�r=rr�Z
auth_magicZcstructr2ZkdfnameZkdf_optionsZnum_pubkeys�	remainderZpubkeyZprivkey_blobr5r��roundsZkey_ivrPZivr�Zdecrypted_privkeyZ	checkint1Z	checkint2r�Zkeydatarrr r�]sr ���
��	�
�
�zPKey._read_private_key_opensshc
CsZg}d}�z|D�]
}|dkrdt�d|||d��d}|d7}||||�}||7}|�|�|dkr�t�d|||d��d}|d7}||||�}||7}t�|d�}|�|�q|dkr�t�d|||d��d}	|d7}|�|	�q|dkr||d	�}|�|��qqWn0tk
�rP}
ztt|
���W5d	}
~
XYnXt|�S)
a
        Used to read new OpenSSH private key format.
        Unpacks a c data structure containing a mix of 32-bit uints and
        variable length strings prefixed by 32-bit uint size field,
        according to the specified format. Returns the unpacked vars
        in a tuple.
        Format strings:
          s - denotes a string
          i - denotes a long integer, encoded as a byte string
          u - denotes a 32-bit unsigned integer
          r - the remainder of the input string, returned as a string
        r�sz>L�rTrr�N)	�struct�unpack�appendrZinflate_longr�rr@�tuple)r'rZ	strformatZarr�idxr�Zs_sizer�rrr�rrr r��s8



zPKey._uint32_cstruct_unpackc	CsHt�tj|tjtjBtjBtd�d��}|j||||d�W5QRXdS)a�
        Write an SSH2-format private key file in a form that can be read by
        paramiko or openssh.  If no password is given, the key is written in
        a trivially-encoded format (base64) which is completely insecure.  If
        a password is given, DES-EDE3-CBC is used.

        :param str tag:
            ``"RSA"`` or ``"DSA"``, the tag used to mark the data block.
        :param filename: name of the file to write.
        :param bytes data: data blob that makes up the private key.
        :param str password: an optional password to use to encrypt the file.

        :raises: ``IOError`` -- if there was an error writing the file.
        )�flagsr5�wr>N)�os�fdopenrI�O_WRONLY�O_TRUNC�O_CREATr�_write_private_key)r'r~rPr�r=r�rrr �_write_private_key_file�s��
zPKey._write_private_key_filecCs@|dkrt��}nt�t|��}|�|�tjj||����dSr#)	r
ZNoEncryptionZBestAvailableEncryptionr�writeZ
private_bytesZEncodingZPEMr�)r'r�rPr�r=Z
encryptionrrr r�s
��zPKey._write_private_keycCs�|}|}t|t�r|g}t|t�r(|g}|dkr8td��|��|��}||krRn<||krv|�t|����|��nd}t|�	|j
j|���dS)a�
        Perform message type-checking & optional certificate loading.

        This includes fast-forwarding cert ``msg`` objects past the nonce, so
        that the subsequent fields are the key numbers; thus the caller may
        expect to treat the message as key material afterwards either way.

        The obtained key type is returned for classes which need to know what
        it was (e.g. ECDSA.)
        NzKey object may not be emptyz%Invalid key (class: {}, data type: {})rEr@r�rewind�get_textrLrrbZ
get_stringr�rHr,)r'rWr%Z	cert_typeZ	key_typesZ
cert_types�type_r�rrr �_check_type_and_load_certs"



zPKey._check_type_and_load_certcCsht|t�rd}ntj�|�r"d}nd}tt|�|�}|j�|�	��s^d}t
|�|j|�	����||_dS)a5
        Supplement the private key contents with data loaded from an OpenSSH
        public key (``.pub``) or certificate (``-cert.pub``) file, a string
        containing such a file, or a `.Message` object.

        The .pub contents adds no real value, since the private key
        file includes sufficient information to derive the public
        key info. For certificates, however, this can be used on
        the client side to offer authentication requests to the server
        based on certificate instead of raw public key.

        See:
        https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys

        Note: very little effort is made to validate the certificate contents,
        that is for the server to decide if it is good enough to authenticate
        successfully.
        �from_message�	from_file�from_stringz0PublicBlob type {} incompatible with key type {}N)
rErr�rM�isfile�getattr�
PublicBlobr%�
startswithrkrDr�Zpublic_blob)r'�value�constructor�blobr�rrr rLCs
zPKey.load_certificate)N)NN)N)N)N)N)N)N)N)N)N)4r,r-r.r/rr�rr�rr�r�r��re�compiler�r��staticmethodrQrT�classmethodrSr(r_rbrcrgri�propertyrdrkr\r]rprrr^rzr|r}rrJr�r�r�r�r�r�r�r�r�r�r�rLrrrr r0[s�
�����
I












%4V1
"
1r0c@sVeZdZdZddd�Zedd��Zedd��Zed	d
��Zdd�Z	d
d�Z
dd�ZdS)r�a�
    OpenSSH plain public key or OpenSSH signed public key (certificate).

    Tries to be as dumb as possible and barely cares about specific
    per-key-type data.

    .. note::

        Most of the time you'll want to call `from_file`, `from_string` or
        `from_message` for useful instantiation, the main constructor is
        basically "I should be using ``attrs`` for this."
    NcCs||_||_||_dS)a
        Create a new public blob of given type and contents.

        :param str type_: Type indicator, eg ``ssh-rsa``.
        :param bytes blob: The blob bytes themselves.
        :param str comment: A comment, if one was given (e.g. file-based.)
        N)r%�key_blobrY)r'r�r�rYrrr r(wszPublicBlob.__init__c	Cs&t|��}|��}W5QRX|�|�S)zO
        Create a public blob from a ``-cert.pub``-style file on disk.
        )rI�readr�)rVr~r��stringrrr r��s
zPublicBlob.from_filec
Cs�|�dd�}t|�dkr*d}t|�|���|d}tt|d��}z|d��}Wntk
rjd}YnXt|�}|�	�}||kr�d�||�}	td�|	���||||d�S)	zI
        Create a public blob from a ``-cert.pub``-style string.
        Nr8z%Not enough fields for public blob: {}rrz!key type={!r}, but blob type={!r}zInvalid PublicBlob contents: {})r�r�rY)
rnr)rDr�rrru�
IndexErrorrr�)
rVr��fieldsrWr%r�rYr�Z	blob_typeZdeetsrrr r��s&
�zPublicBlob.from_stringcCs|��}|||��d�S)z�
        Create a public blob from a network `.Message`.

        Specifically, a cert-bearing pubkey auth packet, because by definition
        OpenSSH-style certificates 'are' their own network representation."
        )r�r�)r�rb)rV�messager�rrr r��szPublicBlob.from_messagecCs&d�|j�}|jr"|d�|j�7}|S)Nz{} public key/certificatez- {})r�r%rY)r'�retrrr r+�szPublicBlob.__str__cCs|o|o|j|jkSr#)r�rerrr rg�szPublicBlob.__eq__cCs
||kSr#rrerrr �__ne__�szPublicBlob.__ne__)N)r,r-r.r/r(r�r�r�r�r+rgr�rrrr r�is




r�)/r/r�rrr�rr��pathlibr�hashlibrrr�r�r�Zcryptography.hazmat.backendsrZcryptography.hazmat.primitivesr	r
Z&cryptography.hazmat.primitives.ciphersrrr
rr?rZ
paramiko.utilrrZparamiko.commonrZparamiko.ssh_exceptionrrZparamiko.messagerZ/cryptography.hazmat.decrepit.ciphers.algorithmsr�ImportErrorZ1cryptography.hazmat.primitives.ciphers.algorithmsr�r!r�r"r0r�rrrr �<module>sB


F1le Man4ger