You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then the IE value length is greater than 127 it still encodes/decodes the length in the shorter implementation thus not able to communicate with any other ASN1 service.
The text was updated successfully, but these errors were encountered:
exp := float64(len(data) - 1)
var i, res int
for i = 0; i < len(data); i = i + 1 {
res = res + int((math.Exp2(8*exp) * float64(data[i])))
exp = exp - 1
}
return res
ASN1 has 2 implementations for the data length.
then the IE value length is greater than 127 it still encodes/decodes the length in the shorter implementation thus not able to communicate with any other ASN1 service.
The text was updated successfully, but these errors were encountered: