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

« back to all changes in this revision

Viewing changes to man/man3/Tspi_DAA_IssueSetup.3

  • 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
.\" Copyright (C) 2006 International Business Machines Corporation
 
2
.\" Written by Anthony Bussani based on the Trusted Computing Group Software Stack Specification Version 1.2
 
3
.\"
 
4
.de Sh \" Subsection
 
5
.br
 
6
.if t .Sp
 
7
.ne 5
 
8
.PP
 
9
\fB\\$1\fR
 
10
.PP
 
11
..
 
12
.de Sp \" Vertical space (when we can't use .PP)
 
13
.if t .sp .5v
 
14
.if n .sp
 
15
..
 
16
.de Ip \" List item
 
17
.br
 
18
.ie \\n(.$>=3 .ne \\$3
 
19
.el .ne 3
 
20
.IP "\\$1" \\$2
 
21
..
 
22
.TH "Tspi_DAA_IssueSetup" 3 "2006-09-04" "TSS 1.2"
 
23
.ce 1
 
24
TCG Software Stack Developer's Reference
 
25
.SH NAME
 
26
Tspi_DAA_IssueSetup \- generate a DAA Issuer public and private key
 
27
.SH "SYNOPSIS"
 
28
.ad l
 
29
.hy 0
 
30
.nf
 
31
.B #include <tss/tss_typedef.h>
 
32
.B #include <tss/tss_structs.h>
 
33
.B #include <tss/tspi.h>
 
34
.sp
 
35
.BI "TSPICALL Tspi_DAA_IssueSetup("
 
36
.BI "    TSS_HDAA                  " hDAA ","
 
37
.BI "    UINT32                    " issuerBaseNameLength ","
 
38
.BI "    BYTE*                     " issuerBaseName ","
 
39
.BI "    UINT32                    " numberPlatformAttributes ","
 
40
.BI "    UINT32                    " numberIssuerAttributes ","
 
41
.BI "    TSS_HKEY*                 " keyPair ","
 
42
.BI "    TSS_DAA_PK_PROOF**        " identity_proof
 
43
.BI ");"
 
44
.fi
 
45
.sp
 
46
.ad
 
47
.hy
 
48
 
 
49
.SH "DESCRIPTION"
 
50
.PP
 
51
\Tspi_DAA_IssueSetup\fR
 
52
is part of the DAA Issuer component. It defines the generation of a DAA Issuer
 
53
public and secret key. Further it defines the generation of a non-interactive proof (using
 
54
the Fiat-Shamir heuristic) that the public keys were chosen correctly. The latter will guarantee
 
55
the security requirements of the platform (respectively, its user), i.e., that the privacy and
 
56
anonymity of signatures will hold.
 
57
The generation of the authentication keys of the DAA Issuer, which are used to authenticate
 
58
(main) DAA Issuer keys, is not defined by this function.
 
59
This is an optional function and does not require a TPM or a TCS.
 
60
 
 
61
.SH "PARAMETERS"
 
62
.PP
 
63
.SS hDAA
 
64
The \fIhDAA\fR parameter is used to specify the handle of the DAA object.
 
65
.SS issuerBaseNameLength
 
66
The \fIissuerBaseNameLength\fR parameter is the length of the issuerBaseName.
 
67
.SS issuerBaseName
 
68
The \fIissuerBaseName\fR parameter is the unique name of the DAA Issuer.
 
69
.SS numberPlatformAttributes
 
70
The \fInumberPlatformAttributes\fR parameter is the number of attributes that the Platform can choose and which will not be visible to the Issuer.
 
71
.SS numberIssuerAttributes
 
72
The \fInumberIssuerAttributes\fR parameter is number of attributes that the Issuer can choose and which will be visible to both the Platform and the Issuer.
 
73
.SS keyPair
 
74
The \fIkeyPair\fR parameter is the handle of the main DAA Issuer key pair (private and public portion).
 
75
.SS publicKeyProof
 
76
The \fIpublicKeyProof\fR parameter is the Handle of the proof of the main DAA Issuer public key.
 
77
 
 
78
.SH "RETURN CODES"
 
79
.PP
 
80
\fBTspi_DAA_IssueSetup\fR returns TSS_SUCCESS on success, otherwise one of the
 
81
following values is returned:
 
82
.TP
 
83
.SM TSS_E_INVALID_HANDLE
 
84
Either the DAA is not valid.
 
85
.TP
 
86
.SM TSS_E_BAD_PARAMETER
 
87
.TP
 
88
.SM TSS_E_INTERNAL_ERROR
 
89
An internal SW error has been detected.
 
90
 
 
91
.SH "CONFORMING TO"
 
92
.PP
 
93
\fBTspi_DAA_IssueSetup\fR conforms to the Trusted Computing Group
 
94
Software Specification version 1.2
 
95
 
 
96
.SH "SEE ALSO"
 
97
 
 
98
.PP
 
99
\fBTspi_DAA_IssuerKeyVerification\fR(3)
 
100