We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently SDK implements ECDSA signature in the CHIP Certificate as a TLV structure of R and S parameters:
ecdsa-signature => STRUCTURE [tag-order] { r [1] : OCTET STRING, s [2] : OCTET STRING, }
Recently, the spec was updated to represent ECDSA signature as Octet String:
ec-signature => OCTET STRING [ length (CHIP_CRYPTO_GROUP_SIZE_BYTES * 2) ]
Update implementation to match the spec.
The text was updated successfully, but these errors were encountered:
Looks resolved?
Sorry, something went wrong.
No branches or pull requests
Problem
Currently SDK implements ECDSA signature in the CHIP Certificate as a TLV structure of R and S parameters:
Recently, the spec was updated to represent ECDSA signature as Octet String:
ec-signature => OCTET STRING [ length (CHIP_CRYPTO_GROUP_SIZE_BYTES * 2) ]
Proposed Solution
Update implementation to match the spec.
The text was updated successfully, but these errors were encountered: