5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/vendor/github.com/go-asn1-ber/asn1-ber/content_int.go

26 lines
310 B
Go
Raw Permalink Normal View History

2020-08-09 22:29:54 +00:00
package ber
func encodeUnsignedInteger(i uint64) []byte {
n := uint64Length(i)
out := make([]byte, n)
var j int
for ; n > 0; n-- {
2020-10-19 21:40:00 +00:00
out[j] = byte(i >> uint((n-1)*8))
2020-08-09 22:29:54 +00:00
j++
}
return out
}
func uint64Length(i uint64) (numBytes int) {
numBytes = 1
for i > 255 {
numBytes++
i >>= 8
}
return
}