Skip to content

red-sayed/Base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ”‘ 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.