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
Initially mentioned in #57 (comment).
Value zero with type code 3 is illegal no matter how it's encoded.
It would be good to add bad tests for
E0 01 00 EA 31 00 E0 01 00 EA 32 00 ... E0 01 00 EA 3E 81 00
The text was updated successfully, but these errors were encountered:
Per the binary specification every representation of 0 other than 0x20 is invalid.
0x20
If the value is zero then T must be 2, L is zero, and there are no length or magnitude subfields.
Resolving this issue should likely include adding bad tests for invalid positive representations of 0 as well.
E0 01 00 EA 21 00 ...
Sorry, something went wrong.
We need to clarify the spec. Overpadded zero values on type code 2 (e.g. 21 00) should be allowed. I've created amazon-ion/ion-docs#93.
No branches or pull requests
Initially mentioned in #57 (comment).
Value zero with type code 3 is illegal no matter how it's encoded.
It would be good to add bad tests for
The text was updated successfully, but these errors were encountered: