-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
scriptor.1
90 lines (80 loc) · 2.16 KB
/
scriptor.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH SCRIPTOR 1p "octobre 17, 2003"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
scriptor \- Perl script to send commands to a smart card
.SH SYNOPSIS
.B scriptor
.RI [ -h ]
.RI [ -r\ reader ]
.RI [ -p\ protocol ]
.RI [ -u ]
.RI [ file ]
.SH DESCRIPTION
This manual page documents briefly the
.B scriptor
command.
.PP
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
.\" respectively.
\fBscriptor\fP is a program that sends commands to a smart card using a
batch file or stdin.
.SH OPTIONS
A description of options is included below.
.TP
.B \-h
Show summary of options.
.TP
.B \-r reader
Use the indicated reader. By default the first PC/SC reader is used.
.TP
.B \-p protocol
Use the indicated protocol. Accepted values are T=0 and T=1. By default
T=0 is used.
.TP
.B \-u
Use unbuffered stdout.
.TP
.B file
Use the file instead of stdin to read commands (APDUs)
The commands are of the form:
CLA INS P1 P2 Lc [data] [le]
reset
# comment
Example:
# reset the card
reset
# Select MF 3F00
A0 A4 00 00 02 3F 00
# Get Response
# 17 is the value of second SW from the previous command
A0 C0 00 00 17
# Select DF Telecom (7F10)
A0 A4 00 00 02 7F 10
# Get Response
A0 C0 00 00 17
# Select EF_ADN (6F3A) (Abbreviated Dialing Numbers)
A0 A4 00 00 02 6F 3A
# Get Response
A0 C0 00 00 0F
.SH SEE ALSO
.BR pcscd (8), gscriptor (1)
.br
.SH AUTHOR
This manual page was written by Ludovic Rousseau <rousseau@debian.org>,
for the Debian GNU/Linux system (but may be used by others).