Codebase list golang-gopkg-asn1-ber.v1 / upstream/1.5.1 content_int.go
upstream/1.5.1

Tree @upstream/1.5.1 (Download .tar.gz)

content_int.go @upstream/1.5.1raw · history · blame

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))
		j++
	}

	return out
}

func uint64Length(i uint64) (numBytes int) {
	numBytes = 1

	for i > 255 {
		numBytes++
		i >>= 8
	}

	return
}