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

Method Base64Encode

Source/Engine/Utilities/Encryption.cpp:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void Encryption::Base64Encode(const byte* bytes, int32 size, Array<char>& encoded)
64{
65 encoded.Resize(Base64EncodeLength(size));
66 Base64Encode(bytes, size, encoded.Get());
67}
68
69void Encryption::Base64Encode(const byte* bytes, int32 size, char* encoded)
70{

Callers

nothing calls this directly

Calls 2

ResizeMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected