ext-cryptopp/hex.h

53 lines
1.8 KiB
C
Raw Normal View History

// hex.h - originally written and placed in the public domain by Wei Dai
2016-04-08 22:12:20 +00:00
//! \file hex.h
//! \brief Classes for HexEncoder and HexDecoder
2015-11-05 06:59:46 +00:00
#ifndef CRYPTOPP_HEX_H
#define CRYPTOPP_HEX_H
#include "cryptlib.h"
#include "basecode.h"
NAMESPACE_BEGIN(CryptoPP)
2016-04-08 22:12:20 +00:00
//! \class HexEncoder
//! \brief Converts given data to base 16
2015-11-05 06:59:46 +00:00
class CRYPTOPP_DLL HexEncoder : public SimpleProxyFilter
{
public:
2016-04-08 22:12:20 +00:00
//! \brief Construct a HexEncoder
//! \param attachment a BufferedTrasformation to attach to this object
//! \param uppercase a flag indicating uppercase output
2016-04-20 23:03:46 +00:00
//! \param groupSize the size of the output grouping
2016-04-08 22:12:20 +00:00
//! \param separator the separator to use between groups
//! \param terminator the terminator append after processing
2017-03-01 11:10:06 +00:00
HexEncoder(BufferedTransformation *attachment = NULLPTR, bool uppercase = true, int groupSize = 0, const std::string &separator = ":", const std::string &terminator = "")
2015-11-05 06:59:46 +00:00
: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)
{
2016-04-20 23:03:46 +00:00
IsolatedInitialize(MakeParameters(Name::Uppercase(), uppercase)(Name::GroupSize(), groupSize)(Name::Separator(), ConstByteArrayParameter(separator))(Name::Terminator(), ConstByteArrayParameter(terminator)));
2015-11-05 06:59:46 +00:00
}
void IsolatedInitialize(const NameValuePairs &parameters);
};
2016-04-08 22:12:20 +00:00
//! \class HexDecoder
//! \brief Decode base 16 data back to bytes
2015-11-05 06:59:46 +00:00
class CRYPTOPP_DLL HexDecoder : public BaseN_Decoder
{
public:
2016-04-08 22:12:20 +00:00
//! \brief Construct a HexDecoder
//! \param attachment a BufferedTrasformation to attach to this object
2017-03-01 11:10:06 +00:00
HexDecoder(BufferedTransformation *attachment = NULLPTR)
2015-11-05 06:59:46 +00:00
: BaseN_Decoder(GetDefaultDecodingLookupArray(), 4, attachment) {}
void IsolatedInitialize(const NameValuePairs &parameters);
private:
static const int * CRYPTOPP_API GetDefaultDecodingLookupArray();
};
NAMESPACE_END
#endif