debug output while loading AIK credentials

This commit is contained in:
Andreas Steffen
2011-09-08 12:08:16 +02:00
parent f1b54894f8
commit 2647117767
+2 -2
View File
@@ -183,23 +183,23 @@ static void load_aik(private_pts_t *this)
if (cert_path) if (cert_path)
{ {
DBG2(DBG_IMC,"AIK certificate path %s", cert_path);
this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE, this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE,
CERT_X509, BUILD_FROM_FILE, CERT_X509, BUILD_FROM_FILE,
cert_path, BUILD_END); cert_path, BUILD_END);
if (this->aik) if (this->aik)
{ {
DBG2(DBG_IMC, "loaded AIK certificate from '%s'", cert_path);
return; return;
} }
} }
if (key_path) if (key_path)
{ {
DBG2(DBG_IMC,"AIK public key path %s", key_path);
this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE, this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE,
CERT_TRUSTED_PUBKEY, BUILD_FROM_FILE, CERT_TRUSTED_PUBKEY, BUILD_FROM_FILE,
key_path, BUILD_END); key_path, BUILD_END);
if (this->aik) if (this->aik)
{ {
DBG2(DBG_IMC, "loaded AIK public key from '%s'", key_path);
return; return;
} }
} }