keycard-go/globalplatform/commands.go

19 lines
299 B
Go
Raw Normal View History

2018-09-19 13:31:06 +00:00
package globalplatform
import "github.com/status-im/status-go/smartcard/apdu"
const Cla = uint8(0x00)
const ClaGp = uint8(0x80)
const InsSelect = uint8(0xA4)
func NewCommandSelect(aid []byte) *apdu.Command {
return apdu.NewCommand(
Cla,
InsSelect,
uint8(0x04),
uint8(0x00),
aid,
)
}