2018-10-05 09:35:56 +00:00
|
|
|
package lightwallet
|
|
|
|
|
|
|
|
import "github.com/ethereum/go-ethereum/log"
|
|
|
|
|
2018-11-07 15:33:05 +00:00
|
|
|
var (
|
|
|
|
CardManagerAID = []byte{0xa0, 0x00, 0x00, 0x01, 0x51, 0x00, 0x00, 0x00}
|
|
|
|
CardTestKey = []byte{0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f}
|
|
|
|
|
|
|
|
AppletPkgAID = []byte{0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x57, 0x61, 0x6C, 0x6C, 0x65, 0x74}
|
|
|
|
|
|
|
|
// WalletAID is used as applet AID and instance AID
|
|
|
|
WalletAID = []byte{0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x57, 0x61, 0x6C, 0x6C, 0x65, 0x74, 0x41, 0x70, 0x70}
|
|
|
|
|
|
|
|
NdefAppletAID = []byte{0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x57, 0x61, 0x6C, 0x6C, 0x65, 0x74, 0x4E, 0x46, 0x43}
|
|
|
|
NdefInstanceAID = []byte{0xD2, 0x76, 0x00, 0x00, 0x85, 0x01, 0x01}
|
|
|
|
)
|
|
|
|
|
2018-11-06 09:25:54 +00:00
|
|
|
var logger = log.New("package", "hardware-wallet-go/lightwallet")
|