我正在嘗試編寫一個 Go 程序來解析 ans.1 BER 二進制補碼整數(shù)編碼。但是,整數(shù)可以具有 1、2、3 或 4 字節(jié)長度的編碼(取決于其大?。?。根據(jù)規(guī)范(http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf)最左邊的位總是補碼。什么是干凈的方法來做到這一點?func ParseInt(b []byte) (int64, error) { switch len(b) { case 1: // this works return int64(b[0]&0x7f) - int64(b[0]&0x80), nil case 2: // left most byte of b[0] is -32768 case 3: // left most byte of b[0] is -8388608 case 4: // left most byte of b[0] is -2147483648 (and so on for 5, 6, 7, 8) case 5: case 6: case 7: case 8: default: return 0, errors.New("value does not fit in a int64") }}ParseInt([]byte{0xfe}) // should return (-2, nil)ParseInt([]byte{0xfe, 0xff}) // should return (-257, nil)ParseInt([]byte{0x01, 0x00}) // should return (256, nil)
int64 的可變長度二進制補碼
慕工程0101907
2021-11-01 16:02:14