-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
48 lines (37 loc) · 958 Bytes
/
commands.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
package tapcards
// COMMANDS
type command struct {
Cmd string `cbor:"cmd"`
}
type auth struct {
EphemeralPubKey []byte `cbor:"epubkey"` //app's ephemeral public key
XCVC []byte `cbor:"xcvc"` //encrypted CVC value
}
type statusCommand struct {
command
}
type unsealCommand struct {
command
auth
Slot int `cbor:"slot"`
}
type newCommand struct {
command
auth
Slot int `cbor:"slot"` // (optional: default zero) slot to be affected, must equal currently-active slot number
//ChainCode [32]byte `cbor:"chain_code"` // app's entropy share to be applied to new slot (optional on SATSCARD)
}
type readCommand struct {
command
Nonce []byte `cbor:"nonce"` // provided by app, cannot be all same byte (& should be random)
}
type certsCommand struct {
command
}
type checkCommand struct {
command
Nonce []byte `cbor:"nonce"` // provided by app, cannot be all same byte (& should be random)
}
type waitCommand struct {
command
}