From 84d2482ddbff9564c9ad75b2d30af66e3ddfd44d Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 12 May 2016 15:08:58 -0400 Subject: Updating go depencancies. Switching to go1.6 vendoring (#2949) --- .../src/gopkg.in/asn1-ber.v1/content_int.go | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 Godeps/_workspace/src/gopkg.in/asn1-ber.v1/content_int.go (limited to 'Godeps/_workspace/src/gopkg.in/asn1-ber.v1/content_int.go') diff --git a/Godeps/_workspace/src/gopkg.in/asn1-ber.v1/content_int.go b/Godeps/_workspace/src/gopkg.in/asn1-ber.v1/content_int.go deleted file mode 100644 index 1858b74b6..000000000 --- a/Godeps/_workspace/src/gopkg.in/asn1-ber.v1/content_int.go +++ /dev/null @@ -1,25 +0,0 @@ -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 -} -- cgit v1.2.3-1-g7c22