Skip to content

Latest commit

History

History
28 lines (17 loc) 路 671 Bytes

README.md

File metadata and controls

28 lines (17 loc) 路 671 Bytes

馃攽 Base64

plot

What is it?

Base64 is a simple character converter. It converts characters into nums, might be used in encryption protocols or as independent algorithm. It is a part of RedLibrary.

How to use?

Function prototypes:

// Encryption.
inline std::string * Base64Encode(std::string *data);

// Decryption.
inline std::string * Base64Decode(std::string *data);

Example:

plot

plot

All material in this repository is in the public domain.