generated from cunicu/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
card.go
110 lines (87 loc) · 2.03 KB
/
card.go
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// SPDX-FileCopyrightText: 2023-2024 Steffen Vogel <[email protected]>
// SPDX-License-Identifier: Apache-2.0
package iso7816
import (
"fmt"
)
type ReconnectableCard interface {
Reconnect(reset bool) error
}
type ReaderCard interface {
Reader() string
}
type MetadataCard interface {
Metadata() map[string]string
}
type PCSCCard interface {
Transmit([]byte) ([]byte, error)
BeginTransaction() error
EndTransaction() error
Close() error
Base() PCSCCard
}
type Card struct {
PCSCCard
InsGetRemaining Instruction
}
func NewCard(c PCSCCard) *Card {
return &Card{
PCSCCard: c,
// Some applets like Yubico's OATH applet use a different
// command for fetching remaining data
InsGetRemaining: InsGetResponse,
}
}
func (c *Card) Select(aid []byte) (respBuf []byte, err error) {
return c.Send(&CAPDU{
Ins: InsSelect,
P1: 0x04,
P2: 0x00,
Data: aid,
Ne: MaxLenRespDataStandard,
})
}
// If checks that the card meets the provided filter condition.
func (c *Card) If(flt func(card PCSCCard) (bool, error)) (bool, error) {
return flt(c)
}
// Send sends a command APDU to the card
// nolint: unparam
func (c *Card) Send(cmd *CAPDU) (respBuf []byte, err error) {
cmdBuf, err := cmd.Bytes()
if err != nil {
return nil, fmt.Errorf("failed to serialize CAPDU: %w", err)
}
for {
r, err := c.Transmit(cmdBuf)
if err != nil {
return nil, fmt.Errorf("failed to transmit CAPDU: %w", err)
}
resp, err := ParseRAPDU(r)
if err != nil {
return nil, fmt.Errorf("failed to parse RAPDU: %w", err)
}
respCode := resp.Code()
respBuf = append(respBuf, resp.Data...)
switch {
case respCode.HasMore():
cmdBuf = []byte{0x00, byte(c.InsGetRemaining), 0x00, 0x00}
case respCode.IsSuccess():
return respBuf, nil
default:
return nil, respCode
}
}
}
type Transaction struct {
*Card
}
func (c *Card) NewTransaction() (*Transaction, error) {
if err := c.BeginTransaction(); err != nil {
return nil, err
}
return &Transaction{c}, nil
}
func (tx *Transaction) Close() error {
return tx.EndTransaction()
}