2015-11-19 18:09:33 +00:00
|
|
|
// base64.h - written and placed in the public domain by Wei Dai
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \file base64.h
|
2015-11-18 20:32:28 +00:00
|
|
|
//! \brief Classes for the Base64Encoder, Base64Decoder, Base64URLEncoder and Base64URLDecoder
|
2015-11-05 06:59:46 +00:00
|
|
|
|
|
|
|
#ifndef CRYPTOPP_BASE64_H
|
|
|
|
#define CRYPTOPP_BASE64_H
|
|
|
|
|
|
|
|
#include "cryptlib.h"
|
|
|
|
#include "basecode.h"
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
|
|
|
//! \class Base64Encoder
|
|
|
|
//! \brief Base64 encodes data
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64 encodes data per <A HREF="http://tools.ietf.org/html/rfc4648#section-4">RFC 4648, Base 64 Encoding</A>.
|
2015-11-05 06:59:46 +00:00
|
|
|
class Base64Encoder : public SimpleProxyFilter
|
|
|
|
{
|
|
|
|
public:
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Construct a Base64Encoder
|
|
|
|
//! \param attachment a BufferedTrasformation to attach to this object
|
|
|
|
//! \param insertLineBreaks a BufferedTrasformation to attach to this object
|
2016-12-27 17:34:57 +00:00
|
|
|
//! \param maxLineLength the length of a line if line breaks are used
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64Encoder constructs a default encoder. The constructor lacks a parameter for padding, and you must
|
|
|
|
//! use IsolatedInitialize() to modify the Base64Encoder after construction.
|
|
|
|
//! \sa IsolatedInitialize() for an example of modifying an encoder after construction.
|
2015-11-05 06:59:46 +00:00
|
|
|
Base64Encoder(BufferedTransformation *attachment = NULL, bool insertLineBreaks = true, int maxLineLength = 72)
|
|
|
|
: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)
|
|
|
|
{
|
|
|
|
IsolatedInitialize(MakeParameters(Name::InsertLineBreaks(), insertLineBreaks)(Name::MaxLineLength(), maxLineLength));
|
|
|
|
}
|
2015-11-23 00:17:15 +00:00
|
|
|
|
|
|
|
//! \brief Initialize or reinitialize this object, without signal propagation
|
|
|
|
//! \param parameters a set of NameValuePairs used to initialize this object
|
|
|
|
//! \details IsolatedInitialize() is used to initialize or reinitialize an object using a variable
|
|
|
|
//! number of arbitrarily typed arguments. IsolatedInitialize() does not call Initialize() on attached
|
|
|
|
//! transformations. If initialization should be propagated, then use the Initialize() function.
|
|
|
|
//! \details The following code modifies the padding and line break parameters for an encoder:
|
|
|
|
//! <pre>
|
|
|
|
//! Base64Encoder encoder;
|
|
|
|
//! AlgorithmParameters params = MakeParameters(Pad(), false)(InsertLineBreaks(), false);
|
2016-01-17 17:48:28 +00:00
|
|
|
//! encoder.IsolatedInitialize(params);</pre>
|
|
|
|
//! \details You can change the encoding to RFC 4648 web safe alphabet by performing the following:
|
2016-01-12 17:11:51 +00:00
|
|
|
//! <pre>
|
|
|
|
//! Base64Encoder encoder;
|
|
|
|
//! const byte ALPHABET[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
|
|
|
|
//! AlgorithmParameters params = MakeParameters(Name::EncodingLookupArray(),(const byte *)ALPHABET);
|
2016-01-17 17:48:28 +00:00
|
|
|
//! encoder.IsolatedInitialize(params);</pre>
|
2016-01-12 17:11:51 +00:00
|
|
|
//! \details If you change the encoding alphabet, then you will need to change the decoding alphabet \a and
|
|
|
|
//! the decoder's lookup table.
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \sa Base64URLEncoder for an encoder that provides the web safe alphabet, and Base64Decoder::IsolatedInitialize()
|
|
|
|
//! for an example of modifying a decoder's lookup table after construction.
|
2015-11-05 06:59:46 +00:00
|
|
|
void IsolatedInitialize(const NameValuePairs ¶meters);
|
|
|
|
};
|
|
|
|
|
|
|
|
//! \class Base64Decoder
|
|
|
|
//! \brief Base64 decodes data
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64 encodes data per <A HREF="http://tools.ietf.org/html/rfc4648#section-4">RFC 4648, Base 64 Encoding</A>.
|
2015-11-05 06:59:46 +00:00
|
|
|
class Base64Decoder : public BaseN_Decoder
|
|
|
|
{
|
|
|
|
public:
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Construct a Base64Decoder
|
|
|
|
//! \param attachment a BufferedTrasformation to attach to this object
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \sa IsolatedInitialize() for an example of modifying an encoder after construction.
|
2015-11-05 06:59:46 +00:00
|
|
|
Base64Decoder(BufferedTransformation *attachment = NULL)
|
|
|
|
: BaseN_Decoder(GetDecodingLookupArray(), 6, attachment) {}
|
2016-09-10 08:57:48 +00:00
|
|
|
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Initialize or reinitialize this object, without signal propagation
|
|
|
|
//! \param parameters a set of NameValuePairs used to initialize this object
|
|
|
|
//! \details IsolatedInitialize() is used to initialize or reinitialize an object using a variable
|
2016-01-12 17:11:51 +00:00
|
|
|
//! number of arbitrarily typed arguments. IsolatedInitialize() does not call Initialize() on attached
|
|
|
|
//! transformations. If initialization should be propagated, then use the Initialize() function.
|
|
|
|
//! \details The default decoding alpahbet is RFC 4868. You can change the to RFC 4868 web safe alphabet
|
|
|
|
//! by performing the following:
|
|
|
|
//! <pre>
|
|
|
|
//! int lookup[256];
|
|
|
|
//! const byte ALPHABET[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
|
|
|
|
//! Base64Decoder::InitializeDecodingLookupArray(lookup, ALPHABET, 64, false);
|
|
|
|
//!
|
|
|
|
//! Base64Decoder decoder;
|
|
|
|
//! AlgorithmParameters params = MakeParameters(Name::DecodingLookupArray(),(const int *)lookup);
|
2016-01-17 17:48:28 +00:00
|
|
|
//! decoder.IsolatedInitialize(params);</pre>
|
|
|
|
//! \sa Base64URLDecoder for a decoder that provides the web safe alphabet, and Base64Encoder::IsolatedInitialize()
|
|
|
|
//! for an example of modifying an encoder's alphabet after construction.
|
2016-01-12 04:36:46 +00:00
|
|
|
void IsolatedInitialize(const NameValuePairs ¶meters);
|
2016-01-12 17:11:51 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
private:
|
2016-01-12 17:11:51 +00:00
|
|
|
//! \brief Provides the default decoding lookup table
|
|
|
|
//! \return default decoding lookup table
|
2015-11-05 06:59:46 +00:00
|
|
|
static const int * CRYPTOPP_API GetDecodingLookupArray();
|
|
|
|
};
|
|
|
|
|
|
|
|
//! \class Base64URLEncoder
|
|
|
|
//! \brief Base64 encodes data using a web safe alphabet
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64 encodes data per <A HREF="http://tools.ietf.org/html/rfc4648#section-5">RFC 4648, Base 64 Encoding
|
|
|
|
//! with URL and Filename Safe Alphabet</A>.
|
2015-11-05 06:59:46 +00:00
|
|
|
class Base64URLEncoder : public SimpleProxyFilter
|
|
|
|
{
|
|
|
|
public:
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Construct a Base64URLEncoder
|
|
|
|
//! \param attachment a BufferedTrasformation to attach to this object
|
|
|
|
//! \param insertLineBreaks a BufferedTrasformation to attach to this object
|
2016-12-27 17:34:57 +00:00
|
|
|
//! \param maxLineLength the length of a line if line breaks are used
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64URLEncoder() constructs a default encoder using a web safe alphabet. The constructor ignores
|
|
|
|
//! insertLineBreaks and maxLineLength because the web and URL safe specifications don't use them. They are
|
|
|
|
//! present in the constructor for API compatibility with Base64Encoder so it is a drop-in replacement. The
|
2015-11-23 00:17:15 +00:00
|
|
|
//! constructor also disables padding on the encoder for the same reason.
|
|
|
|
//! \details If you need line breaks or padding, then you must use IsolatedInitialize() to set them
|
|
|
|
//! after constructing a Base64URLEncoder.
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \sa Base64Encoder for an encoder that provides a classic alphabet, and Base64URLEncoder::IsolatedInitialize
|
|
|
|
//! for an example of modifying an encoder after construction.
|
2015-11-05 06:59:46 +00:00
|
|
|
Base64URLEncoder(BufferedTransformation *attachment = NULL, bool insertLineBreaks = false, int maxLineLength = -1)
|
|
|
|
: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)
|
|
|
|
{
|
2015-11-23 00:17:15 +00:00
|
|
|
CRYPTOPP_UNUSED(insertLineBreaks), CRYPTOPP_UNUSED(maxLineLength);
|
|
|
|
IsolatedInitialize(MakeParameters(Name::InsertLineBreaks(), false)(Name::MaxLineLength(), -1)(Name::Pad(),false));
|
2015-11-05 06:59:46 +00:00
|
|
|
}
|
2016-09-10 08:57:48 +00:00
|
|
|
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \details IsolatedInitialize() is used to initialize or reinitialize an object using a variable
|
|
|
|
//! number of arbitrarily typed arguments. IsolatedInitialize() does not call Initialize() on attached
|
|
|
|
//! transformations. If initialization should be propagated, then use the Initialize() function.
|
|
|
|
//! \details The following code modifies the padding and line break parameters for an encoder:
|
|
|
|
//! <pre>
|
|
|
|
//! Base64URLEncoder encoder;
|
|
|
|
//! AlgorithmParameters params = MakeParameters(Name::Pad(), true)(Name::InsertLineBreaks(), true);
|
2016-01-17 17:48:28 +00:00
|
|
|
//! encoder.IsolatedInitialize(params);</pre>
|
|
|
|
//! \sa Base64Encoder for an encoder that provides a classic alphabet.
|
2015-11-05 06:59:46 +00:00
|
|
|
void IsolatedInitialize(const NameValuePairs ¶meters);
|
|
|
|
};
|
|
|
|
|
|
|
|
//! \class Base64URLDecoder
|
|
|
|
//! \brief Base64 decodes data using a web safe alphabet
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64 encodes data per <A HREF="http://tools.ietf.org/html/rfc4648#section-5">RFC 4648, Base 64 Encoding
|
|
|
|
//! with URL and Filename Safe Alphabet</A>.
|
2015-11-05 06:59:46 +00:00
|
|
|
class Base64URLDecoder : public BaseN_Decoder
|
|
|
|
{
|
|
|
|
public:
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Construct a Base64URLDecoder
|
|
|
|
//! \param attachment a BufferedTrasformation to attach to this object
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \details Base64URLDecoder() constructs a default decoder using a web safe alphabet.
|
|
|
|
//! \sa Base64Decoder for a decoder that provides a classic alphabet.
|
2015-11-05 06:59:46 +00:00
|
|
|
Base64URLDecoder(BufferedTransformation *attachment = NULL)
|
|
|
|
: BaseN_Decoder(GetDecodingLookupArray(), 6, attachment) {}
|
2016-09-10 08:57:48 +00:00
|
|
|
|
2015-11-23 00:17:15 +00:00
|
|
|
//! \brief Initialize or reinitialize this object, without signal propagation
|
|
|
|
//! \param parameters a set of NameValuePairs used to initialize this object
|
|
|
|
//! \details IsolatedInitialize() is used to initialize or reinitialize an object using a variable
|
|
|
|
//! number of arbitrarily typed arguments. IsolatedInitialize() does not call Initialize() on
|
|
|
|
//! attached transformations. If initialization should be propagated, then use the Initialize() function.
|
2016-01-17 17:48:28 +00:00
|
|
|
//! \sa Base64Decoder for a decoder that provides a classic alphabet, and Base64URLEncoder::IsolatedInitialize
|
|
|
|
//! for an example of modifying an encoder after construction.
|
2016-01-12 04:36:46 +00:00
|
|
|
void IsolatedInitialize(const NameValuePairs ¶meters);
|
2016-09-10 08:57:48 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
private:
|
2016-01-12 17:11:51 +00:00
|
|
|
//! \brief Provides the default decoding lookup table
|
|
|
|
//! \return default decoding lookup table
|
2015-11-05 06:59:46 +00:00
|
|
|
static const int * CRYPTOPP_API GetDecodingLookupArray();
|
|
|
|
};
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|