mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-01-18 18:31:56 +00:00
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package statuskeycardgo
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
type hexString []byte
|
|
|
|
// MarshalJSON serializes hexString to hex
|
|
func (s hexString) MarshalJSON() ([]byte, error) {
|
|
bytes, err := json.Marshal(btox(s))
|
|
return bytes, err
|
|
}
|
|
|
|
// UnmarshalJSON deserializes hexString to hex
|
|
func (s *hexString) UnmarshalJSON(data []byte) error {
|
|
var x string
|
|
err := json.Unmarshal(data, &x)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
str, err := xtob(x)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*s = hexString([]byte(str))
|
|
return nil
|
|
}
|
|
|
|
type Signature struct {
|
|
R hexString `json:"r"`
|
|
S hexString `json:"s"`
|
|
V byte `json:"v"`
|
|
}
|
|
|
|
type ApplicationInfo struct {
|
|
Initialized bool `json:"initialized"`
|
|
InstanceUID hexString `json:"instanceUID"`
|
|
Version int `json:"version"`
|
|
AvailableSlots int `json:"availableSlots"`
|
|
// KeyUID is the sha256 of of the master public key on the card.
|
|
// It's empty if the card doesn't contain any key.
|
|
KeyUID hexString `json:"keyUID"`
|
|
}
|
|
|
|
type PairingInfo struct {
|
|
Key hexString `json:"key"`
|
|
Index int `json:"index"`
|
|
}
|
|
|
|
type KeyPair struct {
|
|
Address string `json:"address"`
|
|
PublicKey hexString `json:"publicKey"`
|
|
PrivateKey hexString `json:"privateKey,omitempty"`
|
|
}
|