7 lines
267 B
Markdown
7 lines
267 B
Markdown
# Base64 line-by-line
|
|
|
|
These applications encode and decode strins in Base64 by reading their inputs **line by line**.
|
|
|
|
Advantages:
|
|
- Ultra fast, not even a single memory allocation is performed
|
|
- Readable source code, it's just a function call and a loop over input
|