summaryrefslogtreecommitdiff
path: root/base32.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-01-12 12:11:51 -0500
committerJeffrey Walton <noloader@gmail.com>2016-01-12 12:11:51 -0500
commitbe8bbc26911e941872eb0912bb9c3d3512ceadc5 (patch)
treef521e5e22647d00032fde75f4a0db55e4ab006ae /base32.h
parent3a675a41c95c79721c442a69ee72717dec7ad8ab (diff)
downloadcryptopp-git-be8bbc26911e941872eb0912bb9c3d3512ceadc5.tar.gz
Updated documentation
Diffstat (limited to 'base32.h')
-rw-r--r--base32.h34
1 files changed, 31 insertions, 3 deletions
diff --git a/base32.h b/base32.h
index 6790e59d..27e222c5 100644
--- a/base32.h
+++ b/base32.h
@@ -1,4 +1,4 @@
-// base32.h - written and placed in the public domain by Wei Dai
+// base32.h - written and placed in the public domain by Frank Palazzolo, based on hex.cpp by Wei Dai
//! \file
//! \brief Classes for Base32Encoder and Base32Decoder
@@ -14,7 +14,6 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class Base32Encoder
//! \brief Base32 encodes data
//! \details Converts data to base32. The default code is based on draft-ietf-idn-dude-02.txt.
-//! \details To specify alternative alpahabet or code, call Initialize() with EncodingLookupArray parameter.
class Base32Encoder : public SimpleProxyFilter
{
public:
@@ -44,24 +43,53 @@ public:
//! AlgorithmParameters params = MakeParameters(Pad(), false)(InsertLineBreaks(), false);
//! encoder.IsolatedInitialize(params);
//! </pre>
+ //! \details The default encoding alpahbet is DUDE. You can change the encoding to RFC 4648 alphabet by
+ //! performing the following:
+ //! <pre>
+ //! Base32Encoder encoder;
+ //! const byte ALPHABET[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
+ //! AlgorithmParameters params = MakeParameters(Name::EncodingLookupArray(),(const byte *)ALPHABET);
+ //! encoder.IsolatedInitialize(params);
+ //! </pre>
+ //! \details If you change the encoding alphabet, then you will need to change the decoding alphabet \a and
+ //! the decoder's lookup table.
+ //! \sa IsolatedInitialize() for an example of modifying a Base32Encoder after construction.
void IsolatedInitialize(const NameValuePairs &parameters);
};
//! \class Base32Decoder
//! \brief Base32 decodes data
//! \details Decode base32 data. The default code is based on draft-ietf-idn-dude-02.txt
-//! \details To specify alternative alpahabet or code, call Initialize() with EncodingLookupArray parameter.
class Base32Decoder : public BaseN_Decoder
{
public:
//! \brief Construct a Base32Decoder
//! \param attachment a BufferedTrasformation to attach to this object
+ //! \sa IsolatedInitialize() for an example of modifying a Base32Decoder after construction.
Base32Decoder(BufferedTransformation *attachment = NULL)
: BaseN_Decoder(GetDefaultDecodingLookupArray(), 5, attachment) {}
+ //! \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 default decoding alpahbet is DUDE. You can change the to RFC 4868 alphabet by
+ //! performing the following:
+ //! <pre>
+ //! int lookup[256];
+ //! const byte ALPHABET[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
+ //! Base32Decoder::InitializeDecodingLookupArray(lookup, ALPHABET, 32, true /*insensitive*/);
+ //!
+ //! Base32Decoder decoder;
+ //! AlgorithmParameters params = MakeParameters(Name::DecodingLookupArray(),(const int *)lookup);
+ //! decoder.IsolatedInitialize(params);
+ //! </pre>
void IsolatedInitialize(const NameValuePairs &parameters);
private:
+ //! \brief Provides the default decoding lookup table
+ //! \return default decoding lookup table
static const int * CRYPTOPP_API GetDefaultDecodingLookupArray();
};