This commit is contained in:
Pavel Zakharov 2023-05-26 15:33:25 -04:00 committed by GitHub
commit 3742979372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ func parseCreateAsymmetricKeyResponse(payload []byte) (Response, error) {
}
var keyID uint16
err := binary.Read(bytes.NewReader(payload[1:3]), binary.BigEndian, &keyID)
err := binary.Read(bytes.NewReader(payload), binary.BigEndian, &keyID)
if err != nil {
return nil, err
}