1Tspi_DAA_IssueCredential(3)Library Functions ManualTspi_DAA_IssueCredential(3)
2
3
4
5 TCG Software Stack Developer's Reference
6
8 Tspi_DAA_IssueCredential - issue a DAA credential for a TCG platform
9
11 #include <tss/tss_typedef.h>
12 #include <tss/tss_structs.h>
13 #include <tss/tspi.h>
14
15 TSPICALL Tspi_DAA_IssueCredential(
16 TSS_HDAA hDAA,
17 UINT32 attributesIssuerLength,
18 BYTE** attributesIssuer,
19 TSS_DAA_CREDENTIAL_REQUEST credentialRequest,
20 TSS_DAA_JOIN_ISSUER_SESSION joinSession,
21 TSS_DAA_CRED_ISSUER* credIssuer
22 );
23
24
25
27 Tspi_DAA_IssueCredential is part of the DAA Issuer component. It's the
28 last function out of 2 in order to issue a DAA Credential for a TCG
29 Platform. It detects rogue TPM according to published rogue TPM DAA
30 keys. This is an optional function and does not require a TPM or a
31 TCS.
32
33
35 hDAA
36 The hDAA parameter is used to specify the handle of the DAA object.
37
38 attributesIssuerLength
39 The attributesIssuerLength parameter is the length of the attributesIs‐
40 suer array, which is determined by the DAA Issuer public key (li). The
41 length of a single attribute is if/8.
42
43 attributesIssuer
44 The attributesIssuer parameter is the array of attributes to be encoded
45 into the DAA Credential visible to the DAA Issuer .
46
47 credentialRequest
48 The credentialRequest parameter is the credential request of the Plat‐
49 form, it contains the blinded DAA public key of the platform on which
50 the DAA Issuer will issue the credential the blinded attributes chosen
51 by the Platform.
52
53 joinSession
54 The joinSession parameter is the structure containing the DAA Join ses‐
55 sion information.
56
57 credIssuer
58 The credIssuer parameter is the structure containing the DAA Credential
59 issued by the DAA Issuer, the proof of correctness of the credential
60 and the attributes chosen by the DAA Issuer.
61
62
64 Tspi_DAA_IssueCredential returns TSS_SUCCESS on success, otherwise one
65 of the following values is returned:
66
67 TSS_E_BAD_PARAMETER
68
69 TSS_E_INTERNAL_ERROR
70 An internal SW error has been detected.
71
72 TSS_E_DAA_AUTHENTICATION_ERROR
73 The authentication proof of the TPM is incorrect.
74
75 TSS_E_DAA_PSEUDONYM_ERROR
76 The TPM is rogue.
77
78 TSS_E_DAA_CREDENTIAL_REQUEST_PROOF_ERROR
79 The proof of the credential request is incorrect.
80
81
83 Tspi_DAA_IssueCredential conforms to the Trusted Computing Group Soft‐
84 ware Specification version 1.2
85
86
88 Tspi_DAA_IssuerKeyVerification(3)
89
90
91
92
93TSS 1.2 2006-09-04 Tspi_DAA_IssueCredential(3)