/*############################################################################ # Copyright 2016 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ############################################################################*/ /*! * \file * \brief Conversion utilities interface. */ #ifndef EXAMPLE_UTIL_CONVUTIL_H_ #define EXAMPLE_UTIL_CONVUTIL_H_ #include #include "epid/common/types.h" #include "epid/common/file_parser.h" #include "util/stdtypes.h" /// convert a hash algorithm to a string /*! \param[in] alg a hash algorithm \returns string representing the algorithm */ char const* HashAlgToString(HashAlg alg); /// convert a string to a hash algorithm /*! \param[in] str a string \param[out] alg a hash algorithm \retval true string represents a hash algorithm \retval false string does not represent a hash algorithm */ bool StringToHashAlg(char const* str, HashAlg* alg); /// convert an EPID file type to a string /*! \param[in] type an EPID file type \returns string representing the algorithm */ char const* EpidFileTypeToString(EpidFileType type); /// convert a string to an EPID file type /*! \param[in] str a string \param[out] type an EPID file type \retval true string represents an EPID file type \retval false string does not represent an EPID file type */ bool StringToEpidFileType(char const* str, EpidFileType* type); #endif // EXAMPLE_UTIL_CONVUTIL_H_