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
Isn't there an error here?
T-UInt64 ::= INTEGER (0..9223372036854775807) T-Int64 ::= INTEGER (-9223372036854775807.. 9223372036854775807)
The unsigned max should be double and the min of the signed should be -9223372036854775808.
Cheers, Niko
The text was updated successfully, but these errors were encountered:
You're talking about the following lines I guess:
types-base/asn/taste-extended.asn
Lines 17 to 19 in 34c3546
And propose to change them to:
T-UInt64 ::= INTEGER (0..18446744073709551615) T-Int64 ::= INTEGER (-9223372036854775808.. 9223372036854775807)
Sounds reasonable to me. @mmunoz-gmv they are originating from Sargon, right? Do you know of any reason for the range of values?
Sorry, something went wrong.
It's probably a mistake.
No branches or pull requests
Isn't there an error here?
The unsigned max should be double and the min of the signed should be -9223372036854775808.
Cheers,
Niko
The text was updated successfully, but these errors were encountered: