Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 447 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 447 Bytes

Build Status

base64

Clean and clear implementation of Base64 algorithm.

Algorithm

Conversion of a stream of bytes in a stream of printable chars.

Each 3 input bytes will be convetered in 4 chars.  Inputs bytes will be splitted in 4 blocks of 6 bits. Each block will be convetered in a printable char using a predefined dictionary.

Padding.