i2pd/libi2pd/Base.h

39 lines
1.1 KiB
C
Raw Normal View History

/*
2023-10-30 05:11:38 +03:00
* Copyright (c) 2013-2023, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2015-11-03 17:15:49 +03:00
#ifndef BASE_H__
#define BASE_H__
#include <inttypes.h>
#include <string>
2016-02-18 21:19:31 +03:00
#include <iostream>
2015-11-03 17:15:49 +03:00
namespace i2p {
namespace data {
2015-11-03 17:15:49 +03:00
size_t ByteStreamToBase64 (const uint8_t * InBuffer, size_t InCount, char * OutBuffer, size_t len);
size_t Base64ToByteStream (const char * InBuffer, size_t InCount, uint8_t * OutBuffer, size_t len );
const char * GetBase32SubstitutionTable ();
2018-01-06 06:48:51 +03:00
const char * GetBase64SubstitutionTable ();
2023-10-30 05:11:38 +03:00
bool IsBase64 (char ch);
2018-01-06 06:48:51 +03:00
2015-11-03 17:15:49 +03:00
size_t Base32ToByteStream (const char * inBuf, size_t len, uint8_t * outBuf, size_t outLen);
size_t ByteStreamToBase32 (const uint8_t * InBuf, size_t len, char * outBuf, size_t outLen);
2023-10-30 05:11:38 +03:00
bool IsBase32 (char ch);
2015-11-03 17:15:49 +03:00
/**
* Compute the size for a buffer to contain encoded base64 given that the size of the input is input_size bytes
*/
2018-04-06 22:23:56 +03:00
size_t Base64EncodingBufferSize(const size_t input_size);
std::string ToBase64Standard (const std::string& in); // using standard table, for Proxy-Authorization
} // data
} // i2p
2015-11-03 17:15:49 +03:00
#endif