summaryrefslogtreecommitdiffstats
path: root/pki/base/tps/src/apdu/Install_Applet_APDU.cpp
blob: 0a6b9b7c15a69f0778b753a18d7ffc3366bb0c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// --- BEGIN COPYRIGHT BLOCK ---
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation;
// version 2.1 of the License.
// 
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA  02110-1301  USA 
// 
// Copyright (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---

#include <stdio.h>
#include "apdu/APDU.h"
#include "apdu/Install_Applet_APDU.h"
#include "main/Memory.h"

#ifdef XP_WIN32
#define TPS_PUBLIC __declspec(dllexport)
#else /* !XP_WIN32 */
#define TPS_PUBLIC
#endif /* !XP_WIN32 */

/**
 * Constructs Install Applet APDU.
 */
TPS_PUBLIC Install_Applet_APDU::Install_Applet_APDU (Buffer &packageAID, Buffer &appletAID,
		BYTE appPrivileges, unsigned int instanceSize, unsigned int appletMemorySize)
{
    SetCLA(0x84);
    SetINS(0xE6);
    SetP1(0x0C);
    SetP2(0x00);

    Buffer data;
    data.reserve(32); // pre-allocate
    data += packageAID.size();
    data += packageAID;
    data += appletAID.size();
    data += appletAID;
    data += appletAID.size();
    data += appletAID;

    data += 0x01; // length of application privileges byte
    data += appPrivileges;

    Buffer installParams; installParams.reserve(6);
    installParams += 0xEF;
    installParams += 0x04;
    installParams += 0xC8;
    installParams += 0x02;

    installParams += (instanceSize>>8) & 0xff;
    installParams += instanceSize & 0xff;
    installParams += 0xC9;


    //installParams += 0x01;
    //installParams += (BYTE)0x00;

    //Now add some applet specific init data that the applet supports
    //Length of applet specific data

    installParams += 0x04;

    //Issuer info length.
    //Leave this to zero since TPS already writes phone home info to card.
    installParams += (BYTE)0x00;

    //Length of applet memory size
    installParams += (BYTE)0x02;

    // Applet memory block size

    installParams += (appletMemorySize>>8) & 0xff;
    installParams += appletMemorySize & 0xff;

    data += installParams.size();
    data += installParams;
    data += (BYTE) 0x00; // size of token return data

    SetData(data);
}

/**
 * Constructs Install Applet APDU.
 */
TPS_PUBLIC Install_Applet_APDU::Install_Applet_APDU (Buffer &data)
{
    SetCLA(0x84);
    SetINS(0xE6);
    SetP1(0x0C);
    SetP2(0x00);
    SetData(data);
}

TPS_PUBLIC Install_Applet_APDU::~Install_Applet_APDU ()
{
}

TPS_PUBLIC APDU_Type Install_Applet_APDU::GetType()
{
        return APDU_INSTALL_APPLET;
}