repo.or.cz
/
libisds.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add isds_box_state_period structure
[libisds.git]
/
client
/
hotp_generator
blob
3e75c35402f90f5f053c932aace2097fda66139a
1
#!/usr/bin/perl
2
use
warnings
;
3
use
strict
;
4
5
use
Authen
::
OATH
;
6
7
if
(
$#ARGV
!=
1
) {
8
print
"Usage: hotp_generator SECRET COUNTER
\n
"
;
9
exit
1
;
10
}
11
12
print
Authen
::
OATH
->
new
()->
hotp
(
@ARGV
[
0
.
.1
]),
"
\n
"
;