Added shared library support.
This commit is contained in:
@@ -4,7 +4,7 @@ namespace ehs
|
||||
{
|
||||
const char Base64::ascii[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
|
||||
Str_8 Base64::Encode(const Str_8 input)
|
||||
Str_8 Base64::Encode(const Str_8 &input)
|
||||
{
|
||||
UInt_64 input_length = input.Size();
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace ehs
|
||||
return result;
|
||||
}
|
||||
|
||||
Str_8 Base64::Decode(const Str_8 input)
|
||||
Str_8 Base64::Decode(const Str_8 &input)
|
||||
{
|
||||
UInt_64 in_len = input.Size();
|
||||
int i = 0;
|
||||
|
||||
Reference in New Issue
Block a user