i2pd/libi2pd/Base.h

54 lines
1.4 KiB
C
Raw Normal View History

/*
* Copyright (c) 2013-2025, 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 09:15:49 -05:00
#ifndef BASE_H__
#define BASE_H__
#include <inttypes.h>
#include <string>
#include <string_view>
#include <cstdlib>
2015-11-03 09:15:49 -05:00
namespace i2p
{
namespace data
{
2015-11-03 09:15:49 -05: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 11:48:51 +08:00
const char * GetBase64SubstitutionTable ();
constexpr bool IsBase64 (char ch)
{
return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9') || ch == '-' || ch == '~';
}
2018-01-06 11:48:51 +08:00
2025-03-16 20:40:36 -04:00
size_t Base32ToByteStream (std::string_view base32Str, uint8_t * outBuf, size_t outLen);
std::string ByteStreamToBase32 (const uint8_t * inBuf, size_t len);
constexpr bool IsBase32 (char ch)
{
return (ch >= 'a' && ch <= 'z') || (ch >= '2' && ch <= '7');
}
2015-11-03 09:15:49 -05:00
/**
* Compute the size for a buffer to contain encoded base64 given that the size of the input is input_size bytes
*/
constexpr size_t Base64EncodingBufferSize(size_t input_size)
{
auto d = std::div (input_size, 3);
if (d.rem) d.quot++;
return 4 * d.quot;
}
std::string ToBase64Standard (std::string_view in); // using standard table, for Proxy-Authorization
} // data
} // i2p
2015-11-03 09:15:49 -05:00
#endif