| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Licensed Materials - Property of IBM | 3 * Licensed Materials - Property of IBM |
| 4 * | 4 * |
| 5 * trousers - An open source TCG Software Stack | 5 * trousers - An open source TCG Software Stack |
| 6 * | 6 * |
| 7 * (C) Copyright International Business Machines Corp. 2004-2006 | 7 * (C) Copyright International Business Machines Corp. 2004-2006 |
| 8 * | 8 * |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include <limits.h> |
| 11 #include <stdlib.h> | 12 #include <stdlib.h> |
| 12 #include <sys/types.h> | 13 #include <sys/types.h> |
| 13 #include <sys/file.h> | 14 #include <sys/file.h> |
| 14 #include <errno.h> | 15 #include <errno.h> |
| 15 #include <string.h> | 16 #include <string.h> |
| 16 #include <unistd.h> | 17 #include <unistd.h> |
| 17 #include <stdio.h> | 18 #include <stdio.h> |
| 18 #include <limits.h> | 19 #include <limits.h> |
| 19 | 20 |
| 20 #include "trousers/tss.h" | 21 #include "trousers/tss.h" |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 } | 338 } |
| 338 | 339 |
| 339 result = obj_rsakey_set_tcs_handle(*phKey, tcsKeyHandle); | 340 result = obj_rsakey_set_tcs_handle(*phKey, tcsKeyHandle); |
| 340 | 341 |
| 341 free(keyBlob); | 342 free(keyBlob); |
| 342 | 343 |
| 343 return result; | 344 return result; |
| 344 } | 345 } |
| 345 #endif | 346 #endif |
| 346 | 347 |
| OLD | NEW |