Formatting fixes

This commit is contained in:
Guillaume Ballet 2019-03-20 19:21:36 +01:00
parent 0a0b93708d
commit ec4fba83d4

View File

@ -73,6 +73,7 @@ var (
DerivationSignatureHash = sha256.Sum256(common.Hash{}.Bytes())
)
// List of APDU command-related constants
const (
claISO7816 = 0
claSCWallet = 0x80
@ -89,6 +90,10 @@ const (
insLoadKey = 0xD0
insDeriveKey = 0xD1
insStatus = 0xF2
)
// List of ADPU command parameters
const (
P1DeriveKeyFromMaster = uint8(0x00)
P1DeriveKeyFromParent = uint8(0x01)
P1DeriveKeyFromCurrent = uint8(0x10)
@ -102,11 +107,11 @@ const (
signP2OnlyBlock = uint8(0x81)
exportP1Any = uint8(0x00)
exportP2Pubkey = uint8(0x01)
)
// Minimum time to wait between self derivation attempts, even it the user is
// requesting accounts like crazy.
selfDeriveThrottling = time.Second
)
const selfDeriveThrottling = time.Second
// Wallet represents a smartcard wallet instance.
type Wallet struct {