| OLD | NEW |
| 1 /* Software-Based Trusted Platform Module (TPM) Emulator for Linux | 1 /* Software-based Trusted Platform Module (TPM) Emulator |
| 2 * Copyright (C) 2004 Mario Strasser <mast@gmx.net>, | 2 * Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net> |
| 3 * Swiss Federal Institute of Technology (ETH) Zurich | |
| 4 * | 3 * |
| 5 * This module is free software; you can redistribute it and/or modify | 4 * This module is free software; you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License as published | 5 * it under the terms of the GNU General Public License as published |
| 7 * by the Free Software Foundation; either version 2 of the License, | 6 * by the Free Software Foundation; either version 2 of the License, |
| 8 * or (at your option) any later version. | 7 * or (at your option) any later version. |
| 9 * | 8 * |
| 10 * This module is distributed in the hope that it will be useful, | 9 * This module is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 14 * | 13 * |
| 15 * $Id$ | 14 * $Id: tpm_error.c 364 2010-02-11 10:24:45Z mast $ |
| 16 */ | 15 */ |
| 17 | 16 |
| 18 #include "tpm_emulator.h" | 17 #include "tpm_emulator.h" |
| 19 #include "tpm_structures.h" | 18 #include "tpm_structures.h" |
| 20 | 19 |
| 21 const char *tpm_error_to_string(TPM_RESULT res) | 20 const char *tpm_error_to_string(TPM_RESULT res) |
| 22 { | 21 { |
| 23 switch (res) { | 22 switch (res) { |
| 24 case TPM_SUCCESS: | 23 case TPM_SUCCESS: |
| 25 return "Successful completion of the operation."; | 24 return "Successful completion of the operation."; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 return "Bad signature of CMK ticket."; | 241 return "Bad signature of CMK ticket."; |
| 243 case TPM_NOCONTEXTSPACE: | 242 case TPM_NOCONTEXTSPACE: |
| 244 return "There is no room in the context list for additional contexts."; | 243 return "There is no room in the context list for additional contexts."; |
| 245 case TPM_RETRY: | 244 case TPM_RETRY: |
| 246 return "The TPM is too busy to respond to the command immediately, " | 245 return "The TPM is too busy to respond to the command immediately, " |
| 247 "but the command could be resubmitted at a later time."; | 246 "but the command could be resubmitted at a later time."; |
| 248 default: | 247 default: |
| 249 return "Unknown TPM error"; | 248 return "Unknown TPM error"; |
| 250 } | 249 } |
| 251 } | 250 } |
| OLD | NEW |