From 70f8d3242a3bd7a286d88b3e867ff8c6ede3ccf9 Mon Sep 17 00:00:00 2001 From: Sansar Choinyambuu Date: Mon, 5 Sep 2011 11:04:47 +0200 Subject: [PATCH] Removed identity.c related references and variables --- src/libimcv/tcg/pts/pts.c | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/src/libimcv/tcg/pts/pts.c b/src/libimcv/tcg/pts/pts.c index e7d9db80e..16a53ea1d 100644 --- a/src/libimcv/tcg/pts/pts.c +++ b/src/libimcv/tcg/pts/pts.c @@ -18,11 +18,6 @@ #include #include -#include -#include -#include -#include "fake_ek_cert.h" - #include #include @@ -31,16 +26,6 @@ #define PTS_BUF_SIZE 4096 -/* Size of endorsement key in bytes */ -#define EKSIZE (2048/8) -/* URL of Privacy CA */ -#define CAURL "http://www.privacyca.com/" -#define CERTURL CAURL "api/pca/level%d?ResponseFormat=PEM" -#define REQURL CAURL "api/pca/level%d?ResponseFormat=Binary" - -/* TPM has EK Certificate */ -#define REALEK FALSE - typedef struct private_pts_t private_pts_t; /** @@ -205,10 +190,10 @@ static bool obtain_aik(private_pts_t *this) char *key_path; certificate_path = lib->settings->get_str(lib->settings, - "libimcv.plugins.imc-attestation.aik_cert", NULL); + "libimcv.plugins.imc-attestation.aikcert", NULL); key_path = lib->settings->get_str(lib->settings, - "libimcv.plugins.imc-attestation.aik_key", NULL); + "libimcv.plugins.imc-attestation.aikkey", NULL); DBG2(DBG_IMC,"AIK Certificate path %s",certificate_path); DBG2(DBG_IMC,"AIK Public Key path %s", key_path);