forked from weidai11/cryptopp
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase32.cpp
More file actions
Latest commit
39 lines (31 loc) · 1.2 KB
/
Copy pathbase32.cpp
File metadata and controls
39 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// base32.cpp - written and placed in the public domain by Frank Palazzolo, based on hex.cpp by Wei Dai
#include"pch.h"
#include"base32.h"
NAMESPACE_BEGIN(CryptoPP)
staticconst byte s_vecUpper[] = "ABCDEFGHIJKMNPQRSTUVWXYZ23456789";
staticconst byte s_vecLower[] = "abcdefghijkmnpqrstuvwxyz23456789";
voidBase32Encoder::IsolatedInitialize(const NameValuePairs ¶meters)
{
bool uppercase = parameters.GetValueWithDefault(Name::Uppercase(), true);
m_filter->Initialize(CombinedNameValuePairs(
parameters,
MakeParameters(Name::EncodingLookupArray(), uppercase ? &s_vecUpper[0] : &s_vecLower[0], false)(Name::Log2Base(), 5, true)));
}
voidBase32Decoder::IsolatedInitialize(const NameValuePairs ¶meters)
{
BaseN_Decoder::Initialize(CombinedNameValuePairs(
parameters,
MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 5, true)));
}
constint *Base32Decoder::GetDefaultDecodingLookupArray()
{
staticvolatilebool s_initialized = false;
staticint s_array[256];
if (!s_initialized)
{
InitializeDecodingLookupArray(s_array, s_vecUpper, 32, true);
s_initialized = true;
}
return s_array;
}
NAMESPACE_END