blob: 3eaf441a1ab21558c362a7ed63f04f79a7fd0189 [file] [log] [blame]
/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Testing: ownership testing code and ForceClear.
*/
#include <stdio.h>
#include "tlcl.h"
int main(int argc, char** argv) {
int owned;
TlclLibInit();
#if !USE_TPM_EMULATOR
/* The emulator does these itself. */
TlclStartup();
TlclSelftestfull();
#endif
TlclAssertPhysicalPresence();
owned = TlclIsOwned();
printf("tpm is %sowned\n", owned? "" : "NOT ");
if (owned) {
TlclForceClear();
printf("tpm was cleared\n");
}
return 0;
}