| 24 | size_t Base64Decode(void* dst, const char* b, const char* e); |
| 25 | |
| 26 | inline TStringBuf Base64Decode(const TStringBuf src, void* dst) { |
| 27 | return TStringBuf(static_cast<const char*>(dst), Base64Decode(dst, src.begin(), src.end())); |
| 28 | } |
| 29 | |
| 30 | inline void Base64Decode(const TStringBuf src, TString& dst) { |
| 31 | dst.ReserveAndResize(Base64DecodeBufSize(src.size())); |