yubikey 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +3 -3
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
== Description
|
4
4
|
|
5
|
-
A library to decode, decrypt and parse Yubikey[http://www.yubico.com/home/index/] one-time passwords.
|
5
|
+
A library to verify, decode, decrypt and parse Yubikey[http://www.yubico.com/home/index/] one-time passwords.
|
6
6
|
|
7
7
|
== Usage
|
8
8
|
|
@@ -19,7 +19,7 @@ A library to decode, decrypt and parse Yubikey[http://www.yubico.com/home/index/
|
|
19
19
|
p "Session timestamp: #{token.timestamp}" #=> 49712
|
20
20
|
p "OTP random data: #{token.random_number}" #=> 40904
|
21
21
|
|
22
|
-
|
22
|
+
=== OTP Verification
|
23
23
|
|
24
24
|
begin
|
25
25
|
otp = Yubikey::OTP::Verify.new('dteffujehknhfjbrjnlnldnhcujvddbikngjrtgh')
|
@@ -47,6 +47,6 @@ A library to decode, decrypt and parse Yubikey[http://www.yubico.com/home/index/
|
|
47
47
|
=== Contributors
|
48
48
|
Erik Ruwalder
|
49
49
|
|
50
|
-
=== AES
|
50
|
+
=== AES and CRC code
|
51
51
|
Written by Simon Josefsson <simon@josefsson.org>
|
52
52
|
Copyright (c) 2006, 2007, 2008, 2009 Yubico AB
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yubikey
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Rudenberg
|
@@ -13,7 +13,7 @@ date: 2009-06-04 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description: A library to decode, decrypt and parse Yubikey one-time passwords.
|
16
|
+
description: A library to verify, decode, decrypt and parse Yubikey one-time passwords.
|
17
17
|
email: jon335@gmail.com
|
18
18
|
executables: []
|
19
19
|
|
@@ -75,7 +75,7 @@ rubyforge_project: yubikey
|
|
75
75
|
rubygems_version: 1.3.4
|
76
76
|
signing_key:
|
77
77
|
specification_version: 3
|
78
|
-
summary: A library to decode, decrypt and parse Yubikey one-time passwords.
|
78
|
+
summary: A library to verify, decode, decrypt and parse Yubikey one-time passwords.
|
79
79
|
test_files:
|
80
80
|
- spec/hex_spec.rb
|
81
81
|
- spec/spec_helper.rb
|