projects
/
pve-access-control.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
use new PVE::Tools::encrypt_pw, bump version to 5.0-3
[pve-access-control.git]
/
oathkeygen
1
#!/usr/bin/perl
2
3
use strict;
4
use warnings;
5
use MIME::Base32; #libmime-base32-perl
6
7
my $test;
8
open(RND, "/dev/urandom");
9
sysread(RND, $test, 10) == 10 || die "read randon data failed\n";
10
print MIME::Base32::encode_rfc3548($test) . "\n";
11