1Authen::Simple::PassworUds(e3r)Contributed Perl DocumentAauttihoenn::Simple::Password(3)
2
3
4
6 Authen::Simple::Password - Simple password checking
7
9 if ( Authen::Simple::Password->check( $password, $encrypted ) ) {
10 # OK
11 }
12
14 Provides a simple way to verify passwords.
15
17 • check( $password, $encrypted )
18
19 Returns true on success and false on failure.
20
22 • Plain
23
24 Plaintext
25
26 • Crypt
27
28 crypt(3)
29
30 • Crypt Modular
31
32 • $1$
33
34 MD5-based password algorithm
35
36 • $apr$
37
38 MD5-based password algorithm, Apache variant
39
40 • LDAP
41
42 • {CLEARTEXT}
43
44 Plaintext.
45
46 • {CRYPT}
47
48 Uses crypt(3)
49
50 • {MD5}
51
52 MD5 algorithm
53
54 • {SMD5}
55
56 Seeded MD5 algorithm
57
58 • {SHA}
59
60 SHA-1 algorithm
61
62 • {SSHA}
63
64 Seeded SHA-1 algorithm
65
66 • MD5 algorithm
67
68 Encoded as binary, Base64 or hexadecimal.
69
70 • SHA-1 algorithm
71
72 Encoded as binary, Base64 or hexadecimal.
73
74 • SHA-2 256 algorithm
75
76 Encoded as binary, Base64 or hexadecimal.
77
79 Authen::Simple
80
81 crypt(3).
82
84 Christian Hansen "chansen@cpan.org"
85
87 This program is free software, you can redistribute it and/or modify it
88 under the same terms as Perl itself.
89
90
91
92perl v5.34.0 2022-01-20 Authen::Simple::Password(3)