| 94 | } |
| 95 | |
| 96 | void 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 | |
| 105 | void Encryption::Base64Decode(const char* encoded, int32 length, byte* output) |
| 106 | { |