0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-07-01 08:48:41 +02:00
gitea/vendor/github.com/go-asn1-ber/asn1-ber/content_int.go

26 lines
310 B
Go
Raw Normal View History

2016-11-03 23:16:01 +01:00
package ber
func encodeUnsignedInteger(i uint64) []byte {
n := uint64Length(i)
out := make([]byte, n)
var j int
for ; n > 0; n-- {
out[j] = byte(i >> uint((n-1)*8))
2016-11-03 23:16:01 +01:00
j++
}
return out
}
func uint64Length(i uint64) (numBytes int) {
numBytes = 1
for i > 255 {
numBytes++
i >>= 8
}
return
}