You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
769 B
31 lines
769 B
{
|
|
my $rec = $DB->get('callback')
|
|
|| $DB->new_record('callback', {type => 'webapp'});
|
|
my $pw = $rec->prop('Secret');
|
|
if (not $pw or length($pw) < 30)
|
|
{
|
|
use MIME::Base64 qw(encode_base64);
|
|
|
|
$pw = "not set due to error";
|
|
if ( open( RANDOM, "/dev/urandom" ) )
|
|
{
|
|
my $buf;
|
|
if ( read( RANDOM, $buf, 30 ) != 30 )
|
|
{
|
|
warn("Short read from /dev/random: $!");
|
|
}
|
|
else
|
|
{
|
|
$pw = encode_base64($buf);
|
|
chomp $pw;
|
|
}
|
|
close RANDOM;
|
|
}
|
|
else
|
|
{
|
|
warn "Could not open /dev/urandom: $!";
|
|
}
|
|
$rec->set_prop('Secret', $pw);
|
|
}
|
|
}
|
|
|
|
|