blob: 038d835657f381dd0fc6fd35e1faaaacd86fc7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
package Fripost::Password;
use 5.010_000;
use strict;
=head1 NAME
Password.pm - Generate passwords
=cut
our $VERSION = '0.01';
use Data::Dumper;
use Digest::MD5;
use Exporter;
use MIME::Base64;
our @EXPORT = qw/smd5 make_salt/;
our @ISA = qw(Exporter);
sub smd5 {
my $pw = shift;
my $salt = shift || &make_salt();
return "{SMD5}" . pad_base64( MIME::Base64::encode( Digest::MD5::md5( $pw . $salt ) . $salt, '' ) );
}
sub make_salt {
my $len = 8 + int( rand(8) );
my @bytes = ();
for my $i ( 1 .. $len ) {
push( @bytes, rand(255) );
}
return pack( 'C*', @bytes );
}
sub pad_base64 {
my $b64_digest = shift;
while ( length($b64_digest) % 4 ) {
$b64_digest .= '=';
}
return $b64_digest;
}
=head1 AUTHOR
Stefan Kangas C<< <skangas at skangas.se> >>
=head1 BUGS
Please report any bugs to C<< <skangas at skangas.se> >>
=head1 COPYRIGHT
Copyright (c) 2010 Dominik Schulz (dominik.schulz@gauner.org). All rights reserved.
Copyright 2010,2011 Stefan Kangas, all rights reserved.
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
1; # End of Password.pm
__END__
|