mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 15:35:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			250 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			250 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef BASE64_HEADER
 | |
| #define BASE64_HEADER
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| bool base64_is_valid(std::string const& s);
 | |
| std::string base64_encode(unsigned char const* , unsigned int len);
 | |
| std::string base64_decode(std::string const& s);
 | |
| 
 | |
| #endif // BASE64_HEADER
 |