smartcard 0.2.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +14 -0
- data/LICENSE +22 -0
- data/Manifest +19 -0
- data/README +22 -0
- data/ext/smartcard_pcsc/extconf.rb +53 -0
- data/ext/smartcard_pcsc/pcsc.h +46 -0
- data/ext/smartcard_pcsc/pcsc_card.c +475 -0
- data/ext/smartcard_pcsc/pcsc_constants.c +193 -0
- data/ext/smartcard_pcsc/pcsc_context.c +286 -0
- data/ext/smartcard_pcsc/pcsc_io_request.c +87 -0
- data/ext/smartcard_pcsc/pcsc_main.c +10 -0
- data/ext/smartcard_pcsc/pcsc_multi_strings.c +82 -0
- data/ext/smartcard_pcsc/pcsc_namespace.c +18 -0
- data/ext/smartcard_pcsc/pcsc_reader_states.c +326 -0
- data/ext/smartcard_pcsc/pcsc_surrogate_reader.h +207 -0
- data/ext/smartcard_pcsc/pcsc_surrogate_wintypes.h +63 -0
- data/lib/smartcard.rb +1 -0
- data/lib/smartcard/pcsc.so +0 -0
- data/smartcard.gemspec +53 -0
- data/test/test_all.rb +0 -0
- data/tests/ts_pcsc_ext.rb +135 -0
- metadata +67 -0
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: smartcard
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.2.0
|
7
|
+
date: 2007-11-18 00:00:00 -05:00
|
8
|
+
summary: Interface with ISO 7816 smart cards.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
- ext
|
12
|
+
email: victor@costan.us
|
13
|
+
homepage: http://www.costan.us/smartcard
|
14
|
+
rubyforge_project: smartcard
|
15
|
+
description: Interface with ISO 7816 smart cards.
|
16
|
+
autorequire:
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
25
|
+
version:
|
26
|
+
platform: mswin32
|
27
|
+
signing_key:
|
28
|
+
cert_chain:
|
29
|
+
post_install_message:
|
30
|
+
authors:
|
31
|
+
- Victor Costan
|
32
|
+
files:
|
33
|
+
- CHANGELOG
|
34
|
+
- ext/smartcard_pcsc/extconf.rb
|
35
|
+
- ext/smartcard_pcsc/pcsc.h
|
36
|
+
- ext/smartcard_pcsc/pcsc_card.c
|
37
|
+
- ext/smartcard_pcsc/pcsc_constants.c
|
38
|
+
- ext/smartcard_pcsc/pcsc_context.c
|
39
|
+
- ext/smartcard_pcsc/pcsc_io_request.c
|
40
|
+
- ext/smartcard_pcsc/pcsc_main.c
|
41
|
+
- ext/smartcard_pcsc/pcsc_multi_strings.c
|
42
|
+
- ext/smartcard_pcsc/pcsc_namespace.c
|
43
|
+
- ext/smartcard_pcsc/pcsc_reader_states.c
|
44
|
+
- ext/smartcard_pcsc/pcsc_surrogate_reader.h
|
45
|
+
- ext/smartcard_pcsc/pcsc_surrogate_wintypes.h
|
46
|
+
- lib/smartcard.rb
|
47
|
+
- LICENSE
|
48
|
+
- README
|
49
|
+
- test/test_all.rb
|
50
|
+
- tests/ts_pcsc_ext.rb
|
51
|
+
- Manifest
|
52
|
+
- smartcard.gemspec
|
53
|
+
- lib/smartcard/pcsc.so
|
54
|
+
test_files:
|
55
|
+
- test/test_all.rb
|
56
|
+
rdoc_options: []
|
57
|
+
|
58
|
+
extra_rdoc_files: []
|
59
|
+
|
60
|
+
executables: []
|
61
|
+
|
62
|
+
extensions: []
|
63
|
+
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
dependencies: []
|
67
|
+
|