Skip to content
forked from tkislan/base64

Base64 encoding and decoding for C++ projects

License

Notifications You must be signed in to change notification settings

nightmeng/base64

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This library is fork of (https://github.com/adamvr/arduino-base64).

All credits go to its author Adam Rudd.

I have only modified it a little, to be able to use it with stl strings.

But the algorithm remained untouched.

Installation

Library is header only, so you can just copy base64.h where you want it.

Or you can use CMake

cd base64; mkdir build; cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..

Generates basic makefile

make check

Runs simple test that will generate random alphanum and binary strings, tries to encode/decode them and compares the input and decoded string

make install

Installs base64.h to /usr/include (depending on CMAKE_INSTALL_PREFIX)

About

Base64 encoding and decoding for C++ projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.0%
  • CMake 6.0%