Revision 72bee11c2ab201ade864216c4aac0daf2586061b authored by maudoux on 03 April 2019, 21:27:45 UTC, committed by maudoux on 03 April 2019, 21:27:45 UTC
1 parent 6dd40a4
Raw File
totp-client.pl
#!/usr/bin/perl -w

use Authen::OATH;
use Convert::Base32 qw( decode_base32 );

unless ( $ARGV[0] ) {
    print STDERR "Usage $0 <totp-secret>\n";
    exit 1;
}

my $oath = Authen::OATH->new();
my $totp = $oath->totp( decode_base32( $ARGV[0] ) );

print "$totp\n";

1;
back to top