aboutsummaryrefslogtreecommitdiffstats
path: root/src/libimcv/tcg/pts
diff options
context:
space:
mode:
authorSansar Choinyambuu <schoinya@hsr.ch>2011-09-05 11:04:47 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-09-08 12:08:16 +0200
commit70f8d3242a3bd7a286d88b3e867ff8c6ede3ccf9 (patch)
treed5b8b4072fa3b7a7ff7fcf5a2ee31a18306fc10d /src/libimcv/tcg/pts
parent63b7b6e322aacaedecbe4c9bd893bf0aca38978e (diff)
downloadstrongswan-70f8d3242a3bd7a286d88b3e867ff8c6ede3ccf9.tar.bz2
strongswan-70f8d3242a3bd7a286d88b3e867ff8c6ede3ccf9.tar.xz
Removed identity.c related references and variables
Diffstat (limited to 'src/libimcv/tcg/pts')
-rw-r--r--src/libimcv/tcg/pts/pts.c19
1 files 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 <debug.h>
#include <crypto/hashers/hasher.h>
-#include <openssl/rsa.h>
-#include <openssl/pem.h>
-#include <curl/curl.h>
-#include "fake_ek_cert.h"
-
#include <trousers/tss.h>
#include <trousers/trousers.h>
@@ -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);