How to convert a string of Base64 to Byte Array?

Hi,
I am trying to convert a Base64 in string to byte arrays. Any ideas on how can I implement it in c++?

Thank you!!

Something like this maybe

const FString Data64 = Some data;
TArray<TCHAR> DataBytes = Data64.GetCharArray();

Thanks a lot for the reply!!! Saved my life!!

1 Like