// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary // source code may only be used and distributed under the Widevine License // Agreement. // // simple base64 decoder #include namespace base64 { class Base64 { public: Base64() {} ~Base64() {} static std::string Decode(const std::string &s); }; } // namespace base64