keycard-go/apdu/response.go

72 lines
1.2 KiB
Go
Raw Normal View History

2018-09-14 11:30:16 +00:00
package apdu
import (
"bytes"
"encoding/binary"
"errors"
2018-09-27 13:29:07 +00:00
"fmt"
2018-09-14 11:30:16 +00:00
)
2018-09-27 13:29:07 +00:00
const (
SwOK = 0x9000
2018-09-27 13:29:07 +00:00
)
type ErrBadResponse struct {
sw uint16
message string
}
func NewErrBadResponse(sw uint16, message string) *ErrBadResponse {
return &ErrBadResponse{
sw: sw,
message: message,
}
}
func (e *ErrBadResponse) Error() string {
return fmt.Sprintf("bad response %x: %s", e.sw, e.message)
}
2018-09-25 15:48:21 +00:00
2018-09-14 11:30:16 +00:00
type Response struct {
Data []byte
Sw1 uint8
Sw2 uint8
Sw uint16
}
var ErrBadRawResponse = errors.New("response data must be at least 2 bytes")
2018-09-25 15:44:25 +00:00
func ParseResponse(data []byte) (*Response, error) {
r := &Response{}
return r, r.deserialize(data)
}
2018-09-14 11:30:16 +00:00
func (r *Response) deserialize(data []byte) error {
if len(data) < 2 {
return ErrBadRawResponse
}
r.Data = make([]byte, len(data)-2)
buf := bytes.NewReader(data)
if err := binary.Read(buf, binary.BigEndian, &r.Data); err != nil {
return err
}
if err := binary.Read(buf, binary.BigEndian, &r.Sw1); err != nil {
return err
}
if err := binary.Read(buf, binary.BigEndian, &r.Sw2); err != nil {
return err
}
r.Sw = (uint16(r.Sw1) << 8) | uint16(r.Sw2)
return nil
}
2018-09-25 15:48:21 +00:00
func (r *Response) IsOK() bool {
2018-09-27 13:29:07 +00:00
return r.Sw == SwOK
2018-09-25 15:48:21 +00:00
}