You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			328 B
		
	
	
	
		
			Go
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			328 B
		
	
	
	
		
			Go
		
	
| //go:generate make
 | |
| package base64x
 | |
| 
 | |
| import (
 | |
|     `unsafe`
 | |
| )
 | |
| 
 | |
| //go:nosplit
 | |
| //go:noescape
 | |
| //goland:noinspection GoUnusedParameter
 | |
| func __b64encode(out *[]byte, src *[]byte, mode int)
 | |
| 
 | |
| //go:nosplit
 | |
| //go:noescape
 | |
| //goland:noinspection GoUnusedParameter
 | |
| func __b64decode(out *[]byte, src unsafe.Pointer, len int, mode int) (ret int)
 |