mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	* [Vendor] update go-ldap to v3.0.3 * update go-ldap to v3.2.4 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| 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
 | |
| }
 |