Authen::Simple::Password - Simple password checking


Authen-Simple documentation  | view source Contained in the Authen-Simple distribution.

Index


NAME

Top

Authen::Simple::Password - Simple password checking

SYNOPSIS

Top

    if ( Authen::Simple::Password->check( $password, $encrypted ) ) {
        # OK
    }

DESCRIPTION

Top

Provides a simple way to verify passwords.

METHODS

Top

* check( $password, $encrypted )

Returns true on success and false on failure.

SUPPORTED PASSWORD FORMATS

Top

* Plain

Plaintext

* Crypt

crypt(3)

* Crypt Modular

* $1$

MD5-based password algorithm

* $apr$

MD5-based password algorithm, Apache variant

* LDAP

* {CLEARTEXT}

Plaintext.

* {CRYPT}

Uses crypt(3)

* {MD5}

MD5 algorithm

* {SMD5}

Seeded MD5 algorithm

* {SHA}

SHA-1 algorithm

* {SSHA}

Seeded SHA-1 algorithm

* MD5 algorithm

Encoded as binary, Base64 or hexadecimal.

* SHA-1 algorithm

Encoded as binary, Base64 or hexadecimal.

* SHA-2 256 algorithm

Encoded as binary, Base64 or hexadecimal.

SEE ALSO

Top

Authen::Simple

crypt(3).

AUTHOR

Top

Christian Hansen ch@ngmedia.com

COPYRIGHT

Top


Authen-Simple documentation  | view source Contained in the Authen-Simple distribution.