- added missing terminator to Base64 encoder.

This commit is contained in:
Christoph Oelckers 2020-09-07 23:32:58 +02:00
parent 1b46a6fd9a
commit bf761af9aa

View file

@ -89,6 +89,7 @@ TArray<uint8_t> base64_encode(unsigned char const* bytes_to_encode, size_t in_le
while((i++ < 3))
reta.Push('=');
reta.Push(0);
}
return reta;