Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: tpm/tpm_eviction.c

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tpm/tpm_error.c ('k') | tpm/tpm_handles.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_eviction.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_commands.h" 18 #include "tpm_commands.h"
20 #include "tpm_handles.h" 19 #include "tpm_handles.h"
21 #include "tpm_data.h" 20 #include "tpm_data.h"
22 #include "crypto/rsa.h" 21 #include "crypto/rsa.h"
23 22
24 /* 23 /*
25 * Eviction ([TPM_Part3], Section 22) 24 * Eviction ([TPM_Part3], Section 22)
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 if (sessionDAA != NULL) { 94 if (sessionDAA != NULL) {
96 memset(sessionDAA, 0, sizeof(*sessionDAA)); 95 memset(sessionDAA, 0, sizeof(*sessionDAA));
97 if (handle == tpmData.stany.data.currentDAA) 96 if (handle == tpmData.stany.data.currentDAA)
98 tpmData.stany.data.currentDAA = 0; 97 tpmData.stany.data.currentDAA = 0;
99 tpm_invalidate_sessions(handle); 98 tpm_invalidate_sessions(handle);
100 } 99 }
101 return TPM_SUCCESS; 100 return TPM_SUCCESS;
102 } 101 }
103 return TPM_INVALID_RESOURCE; 102 return TPM_INVALID_RESOURCE;
104 } 103 }
OLDNEW
« no previous file with comments | « tpm/tpm_error.c ('k') | tpm/tpm_handles.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698