1 /* Copyright 2016 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 16 #ifndef TENSORFLOW_CORE_PLATFORM_BASE64_H_ 17 #define TENSORFLOW_CORE_PLATFORM_BASE64_H_ 18 19 #include <string> 20 #include "tensorflow/core/platform/status.h" 21 22 namespace tensorflow { 23 24 /// \brief Converts data into web-safe base64 encoding. 25 /// 26 /// See https://en.wikipedia.org/wiki/Base64 27 template <typename T> 28 Status Base64Encode(StringPiece source, bool with_padding, T* encoded); 29 template <typename T> 30 Status Base64Encode(StringPiece source, 31 T* encoded); // with_padding=false. 32 33 /// \brief Converts data from web-safe base64 encoding. 34 /// 35 /// See https://en.wikipedia.org/wiki/Base64 36 template <typename T> 37 Status Base64Decode(StringPiece data, T* decoded); 38 39 // Explicit instantiations defined in base64.cc. 40 extern template Status Base64Decode<string>(StringPiece data, string* decoded); 41 extern template Status Base64Encode<string>(StringPiece source, 42 string* encoded); 43 extern template Status Base64Encode<string>(StringPiece source, 44 bool with_padding, string* encoded); 45 46 extern template Status Base64Decode<tstring>(StringPiece data, 47 tstring* decoded); 48 extern template Status Base64Encode<tstring>(StringPiece source, 49 tstring* encoded); 50 extern template Status Base64Encode<tstring>(StringPiece source, 51 bool with_padding, 52 tstring* encoded); 53 54 } // namespace tensorflow 55 56 #endif // TENSORFLOW_CORE_PLATFORM_BASE64_H_ 57