ppp 0.1.2.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +26 -0
- data/ext/ppp/cppp.c +79 -0
- data/ext/ppp/extconf.rb +5 -0
- data/ext/ppp/ppp.c +253 -0
- data/ext/ppp/ppp.h +44 -0
- data/ext/ppp/rijndael.c +1206 -0
- data/ext/ppp/rijndael.h +18 -0
- data/ext/ppp/sha2.c +950 -0
- data/ext/ppp/sha2.h +108 -0
- data/lib/ppp.rb +41 -0
- data/lib/ppp/card/base.rb +50 -0
- data/lib/ppp/card/html.rb +126 -0
- data/lib/ppp/card/plain.rb +91 -0
- data/lib/ppp/generator.rb +69 -0
- data/lib/ppp/version.rb +3 -0
- metadata +73 -0
data/lib/ppp/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ppp
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2.alpha
|
5
|
+
prerelease: 6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jon Sangster
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-02-20 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! " At grc.com/ppp.htm Steve Gibson describes a system for generating
|
15
|
+
one-time passcodes. The rational for such a sytem is\n given:\n \"The trouble
|
16
|
+
with a username and password is that they never change. We create them, write them
|
17
|
+
down or memorize them, then\n use them over and over again. What has been needed
|
18
|
+
is an inexpensive system that provides something which changes everytime\n it
|
19
|
+
is used. GRC's Perfect Paper Passwords system offers a simple, safe and secure,
|
20
|
+
free and well documented solution that\n is being adopted by a growing number
|
21
|
+
of security-conscious Internet facilities to provide their users with state-of-the-art\n
|
22
|
+
\ cryptographic logon security.\"\n\n John Graham-Cumming has provided an open-source
|
23
|
+
implementation of this system in C (http://www.jgc.org/blog/pppv3-c.zip),\n released
|
24
|
+
under the BSD license.\n\n This gem is a ruby interface to that C implementation.\n"
|
25
|
+
email:
|
26
|
+
- jon@ertt.ca
|
27
|
+
executables: []
|
28
|
+
extensions:
|
29
|
+
- ext/ppp/extconf.rb
|
30
|
+
extra_rdoc_files: []
|
31
|
+
files:
|
32
|
+
- LICENSE
|
33
|
+
- lib/ppp.rb
|
34
|
+
- lib/ppp/generator.rb
|
35
|
+
- lib/ppp/version.rb
|
36
|
+
- lib/ppp/card/base.rb
|
37
|
+
- lib/ppp/card/plain.rb
|
38
|
+
- lib/ppp/card/html.rb
|
39
|
+
- ext/ppp/ppp.c
|
40
|
+
- ext/ppp/cppp.c
|
41
|
+
- ext/ppp/rijndael.c
|
42
|
+
- ext/ppp/sha2.c
|
43
|
+
- ext/ppp/ppp.h
|
44
|
+
- ext/ppp/rijndael.h
|
45
|
+
- ext/ppp/sha2.h
|
46
|
+
- ext/ppp/extconf.rb
|
47
|
+
homepage: http://ertt.ca/
|
48
|
+
licenses: []
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
- ext
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ! '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>'
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 1.3.1
|
66
|
+
requirements: []
|
67
|
+
rubyforge_project: ppp
|
68
|
+
rubygems_version: 1.8.15
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: Ruby interface for John Graham-Cumming's implementation of GRC's Open, Ultra-High
|
72
|
+
Security, One Time Password System
|
73
|
+
test_files: []
|