# _crypt - pydoc - phpman

Help on module _crypt:

## NAME
    _crypt

## MODULE REFERENCE
    <https://docs.python.org/3.10/library/_crypt.html>

    The following documentation is automatically generated from the Python
    source files.  It may be incomplete, incorrect or include features that
    are considered implementation detail and may vary between Python
    implementations.  When in doubt, consult the module reference at the
    location listed above.

## FUNCTIONS
### crypt
        Hash a *word* with the given *salt* and return the hashed password.

        *word* will usually be a user's password.  *salt* (either a random 2 or 16
        character string, possibly prefixed with $digit$ to indicate the method)
        will be used to perturb the encryption algorithm and produce distinct
        results for a given *word*.

## FILE
    /usr/lib/python3.10/lib-dynload/_crypt.cpython-310-x86_64-linux-gnu.so


