| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*############################################################################
- # 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 implementation.
- *
- */
- #include <stdlib.h>
- #include <ctype.h>
- #include <string.h>
- #include "util/convutil.h"
- #include "util/envutil.h"
- const char* hash_alg_to_string[] = {"SHA-256", "SHA-384", "SHA-512",
- "SHA-512/256", "SHA3/256", "SHA3/384",
- "SHA3/512"};
- #define COUNT_OF(A) (sizeof(A) / sizeof((A)[0]))
- char const* HashAlgToString(HashAlg alg) {
- if ((int)alg < 0 || (size_t)alg >= COUNT_OF(hash_alg_to_string))
- return "unknown";
- return hash_alg_to_string[alg];
- }
- bool StringToHashAlg(char const* str, HashAlg* alg) {
- size_t i;
- if (!alg || !str) return false;
- for (i = 0; i < COUNT_OF(hash_alg_to_string); i++) {
- if (0 == strcmp(str, hash_alg_to_string[i])) {
- *alg = (HashAlg)i;
- return true;
- }
- }
- log_error("hash algorithm \"%s\" is unknown", str);
- return false;
- }
- const char* epid_file_type_to_string[kNumFileTypes] = {
- "IssuingCaPubKey", "GroupPubKey", "PrivRl", "SigRl", "GroupRl"};
- char const* EpidFileTypeToString(EpidFileType type) {
- if ((int)type < 0 || (size_t)type >= COUNT_OF(epid_file_type_to_string))
- return "unknown";
- return epid_file_type_to_string[type];
- }
- bool StringToEpidFileType(char const* str, EpidFileType* type) {
- size_t i;
- if (!type || !str) return false;
- for (i = 0; i < COUNT_OF(epid_file_type_to_string); i++) {
- if (0 == strcmp(str, epid_file_type_to_string[i])) {
- *type = (EpidFileType)i;
- return true;
- }
- }
- log_error("epid file type \"%s\" is unknown", str);
- return false;
- }
|