mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-11-04 08:01:38 +01:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								#ifndef CORE_BASE64_H_
							 | 
						||
| 
								 | 
							
								#define CORE_BASE64_H_
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class base64
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
								    static String encode(uint8_t * data, size_t length);
							 | 
						||
| 
								 | 
							
								    static String encode(String text);
							 | 
						||
| 
								 | 
							
								private:
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif /* CORE_BASE64_H_ */
							 |