~ubuntu-branches/ubuntu/hardy/trousers/hardy-proposed

« back to all changes in this revision

Viewing changes to src/tcs/tcs_migration.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-01-23 22:03:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080123220300-fhtqja3c0oq0gp6z
Tags: 0.3.1-4
* Added patch from Aaron M. Ucko <ucko@debian.org> to allow trousers to
  build successfully on amd64, and presumably also other 64-bit
  architectures (Closes: #457400).
* Including udev rule for /dev/tpm from William Lima
  <wlima.amadeus@gmail.com> as suggested by David Smith <dds@google.com>
  (Closes: #459682).
* Added lintian overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Licensed Materials - Property of IBM
 
4
 *
 
5
 * trousers - An open source TCG Software Stack
 
6
 *
 
7
 * (C) Copyright International Business Machines Corp. 2006
 
8
 *
 
9
 */
 
10
 
 
11
 
 
12
#include <stdlib.h>
 
13
#include <stdio.h>
 
14
#include <string.h>
 
15
#include <inttypes.h>
 
16
 
 
17
#include "trousers/tss.h"
 
18
#include "trousers_types.h"
 
19
#include "tcs_tsp.h"
 
20
#include "tcsps.h"
 
21
#include "tcs_utils.h"
 
22
#include "tcs_int_literals.h"
 
23
#include "capabilities.h"
 
24
#include "tcslog.h"
 
25
#include "req_mgr.h"
 
26
#include "tcsd_wrap.h"
 
27
#include "tcsd.h"
 
28
 
 
29
TSS_RESULT
 
30
UnloadBlob_MIGRATIONKEYAUTH(UINT64 *offset, BYTE *blob, TCPA_MIGRATIONKEYAUTH *mkAuth)
 
31
{
 
32
        TSS_RESULT result;
 
33
 
 
34
        if (!mkAuth) {
 
35
                if ((result = UnloadBlob_PUBKEY(offset, blob, NULL)))
 
36
                        return result;
 
37
 
 
38
                UnloadBlob_UINT16(offset, NULL, blob);
 
39
                UnloadBlob(offset, 20, blob, NULL);
 
40
 
 
41
                return TSS_SUCCESS;
 
42
        }
 
43
 
 
44
        if ((result = UnloadBlob_PUBKEY(offset, blob, &mkAuth->migrationKey)))
 
45
                return result;
 
46
 
 
47
        UnloadBlob_UINT16(offset, &mkAuth->migrationScheme, blob);
 
48
        UnloadBlob(offset, 20, blob, mkAuth->digest.digest);
 
49
 
 
50
        return result;
 
51
}