1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*############################################################################
- # 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 <stddef.h>
- #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 version to a string
- /*!
- \param[in] version an EPID version
- \returns string representing the version
- */
- char const* EpidVersionToString(EpidVersion version);
- /// convert a string to an EPID version
- /*!
- \param[in] str a string
- \param[out] version an EPID version
- \retval true string represents an EPID version
- \retval false string does not represent an EPID version
- */
- bool StringToEpidVersion(char const* str, EpidVersion* version);
- /// 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_
|