MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Base64Decode

Method Base64Decode

Source/Engine/Utilities/Encryption.cpp:96–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96void Encryption::Base64Decode(const char* encoded, int32 length, Array<byte>& output)
97{
98 output.Clear();
99 if (length == 0)
100 return;
101 output.Resize(Base64DecodeLength(encoded, length));
102 Base64Decode(encoded, length, output.Get());
103}
104
105void Encryption::Base64Decode(const char* encoded, int32 length, byte* output)
106{

Callers

nothing calls this directly

Calls 3

ClearMethod · 0.45
ResizeMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected