You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
4.2 KiB
97 lines
4.2 KiB
// base32.cpp - written and placed in the public domain by Frank Palazzolo, based on hex.cpp by Wei Dai |
|
// extended hex alphabet added by JW in November, 2017. |
|
|
|
#include "pch.h" |
|
#include "base32.h" |
|
|
|
NAMESPACE_BEGIN(CryptoPP) |
|
ANONYMOUS_NAMESPACE_BEGIN |
|
|
|
const byte s_stdUpper[] = "ABCDEFGHIJKMNPQRSTUVWXYZ23456789"; |
|
const byte s_stdLower[] = "abcdefghijkmnpqrstuvwxyz23456789"; |
|
const byte s_hexUpper[] = "0123456789ABCDEFGHIJKLMNOPQRSTUV"; |
|
const byte s_hexLower[] = "0123456789abcdefghijklmnopqrstuv"; |
|
|
|
const int s_array[256] = { |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 24, 25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, |
|
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -1, 11, 12, -1, |
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, |
|
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -1, 11, 12, -1, |
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 |
|
}; |
|
|
|
const int s_hexArray[256] = { |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, |
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
|
25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
|
25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 |
|
}; |
|
|
|
ANONYMOUS_NAMESPACE_END |
|
|
|
void Base32Encoder::IsolatedInitialize(const NameValuePairs ¶meters) |
|
{ |
|
bool uppercase = parameters.GetValueWithDefault(Name::Uppercase(), true); |
|
m_filter->Initialize(CombinedNameValuePairs( |
|
parameters, |
|
MakeParameters(Name::EncodingLookupArray(), uppercase ? &s_stdUpper[0] : &s_stdLower[0], false)(Name::Log2Base(), 5, true))); |
|
} |
|
|
|
void Base32Decoder::IsolatedInitialize(const NameValuePairs ¶meters) |
|
{ |
|
BaseN_Decoder::IsolatedInitialize(CombinedNameValuePairs( |
|
parameters, |
|
MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 5, true))); |
|
} |
|
|
|
// Unrolled initialization, http://github.com/weidai11/cryptopp/issues/376 |
|
const int *Base32Decoder::GetDefaultDecodingLookupArray() |
|
{ |
|
return s_array; |
|
} |
|
|
|
void Base32HexEncoder::IsolatedInitialize(const NameValuePairs ¶meters) |
|
{ |
|
bool uppercase = parameters.GetValueWithDefault(Name::Uppercase(), true); |
|
m_filter->Initialize(CombinedNameValuePairs( |
|
parameters, |
|
MakeParameters(Name::EncodingLookupArray(), uppercase ? &s_hexUpper[0] : &s_hexLower[0], false)(Name::Log2Base(), 5, true))); |
|
} |
|
|
|
void Base32HexDecoder::IsolatedInitialize(const NameValuePairs ¶meters) |
|
{ |
|
BaseN_Decoder::IsolatedInitialize(CombinedNameValuePairs( |
|
parameters, |
|
MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 5, true))); |
|
} |
|
|
|
// Unrolled initialization, http://github.com/weidai11/cryptopp/issues/376 |
|
const int *Base32HexDecoder::GetDefaultDecodingLookupArray() |
|
{ |
|
return s_hexArray; |
|
} |
|
|
|
NAMESPACE_END
|
|
|