forked from yawn/ykoath
-
Notifications
You must be signed in to change notification settings - Fork 2
/
list.go
51 lines (36 loc) · 892 Bytes
/
list.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
package ykoath
import (
"fmt"
)
// Name encapsulates the result of the "LIST" instruction
type Name struct {
Algorithm Algorithm
Type Type
Name string
}
// String returns a string representation of the algorithm
func (n *Name) String() string {
return fmt.Sprintf("%s (%s %s)", n.Name, n.Algorithm.String(), n.Type.String())
}
// List sends a "LIST" instruction, return a list of OATH credentials
func (o *OATH) List() ([]*Name, error) {
var names []*Name
res, err := o.send(0x00, 0xa1, 0x00, 0x00)
if err != nil {
return nil, err
}
for _, tv := range res {
switch tv.tag {
case 0x72:
name := &Name{
Algorithm: Algorithm(tv.value[0] & 0x0f),
Name: string(tv.value[1:]),
Type: Type(tv.value[0] & 0xf0),
}
names = append(names, name)
default:
return nil, fmt.Errorf(errUnknownTag, tv.tag)
}
}
return names, nil
}