Skip to content

Latest commit

 

History

31 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

base64

Simple, open source, header-only base64 encoder

Usage

#include <string>
#include <iostream>
#include <iterator>

#include "base64.hpp"

std::string encoded = base64::encode("hello, world");

std::cout << "encoded: " << encoded << std::endl
  << "decoded: " << base64::decode(encoded);
  
// inplace decoding
base64::decode_inplace(encoded);

// or with iterators
base64::decode(encoded.begin(), encoded.end(), std::ostream_iterator<char>(std::cout));

Documentation

The documenation of the simple API can be found here.

License

The header file is put into the public domain, so everyone is allowed to do whatever they want.

About

Simple, open source, header-only base64 encoder

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages