ExportWrapped

This commit is contained in:
Gary Belvin 2021-06-17 07:28:14 -04:00
parent 278b0ae2f2
commit d3f55e54bd
2 changed files with 32 additions and 1 deletions

View File

@ -411,7 +411,20 @@ func CreateSignAttestationCertCommand(keyObjID, attestationObjID uint16) (*Comma
payload := bytes.NewBuffer([]byte{})
binary.Write(payload, binary.BigEndian, keyObjID)
binary.Write(payload, binary.BigEndian, attestationObjID)
command.Data = payload.Bytes()
return command, nil
}
func CreateExportWrappedCommand(wrapObjID uint16, objType uint8, objID uint16) (*CommandMessage, error) {
command := &CommandMessage{
CommandType: CommandTypeExportWrapped,
}
payload := bytes.NewBuffer([]byte{})
binary.Write(payload, binary.BigEndian, wrapObjID)
binary.Write(payload, binary.BigEndian, objType)
binary.Write(payload, binary.BigEndian, objID)
command.Data = payload.Bytes()
return command, nil

View File

@ -107,6 +107,11 @@ type (
SignAttestationCertResponse struct {
Cert []byte
}
ExportWrappedResponse struct {
Nonce []byte
Data []byte
}
)
// ParseResponse parses the binary response from the card to the relevant Response type.
@ -175,6 +180,8 @@ func ParseResponse(data []byte) (Response, error) {
return parseGetOpaqueResponse(payload)
case CommandTypeAttestAsymmetric:
return parseAttestationCertResponse(payload)
case CommandTypeExportWrapped:
return parseExportWrappedResponse(payload)
case ErrorResponseCode:
return nil, parseErrorResponse(payload)
default:
@ -397,6 +404,17 @@ func parseAttestationCertResponse(payload []byte) (Response, error) {
}, nil
}
func parseExportWrappedResponse(payload []byte) (Response, error) {
if len(payload) < 13 {
return nil, errors.New("invalid response payload length")
}
return &ExportWrappedResponse{
Nonce: payload[:13],
Data: payload[13:],
}, nil
}
// Error formats a card error message into a human readable format
func (e *Error) Error() string {
message := ""