libimcv: No need to load AIK pubkey if AIK certificate is available

This commit is contained in:
Andreas Steffen 2016-08-31 16:12:47 +02:00
parent f883cd6df6
commit 288ee54875
1 changed files with 16 additions and 13 deletions

View File

@ -388,7 +388,9 @@ static void load_aik(private_pts_t *this)
DBG1(DBG_PTS, "AIK Blob is not available");
}
/* get AIK public key */
/* get AIK public key if no AIK certificate is available */
if (!this->aik_cert)
{
if (key_path)
{
map = chunk_map(key_path, FALSE);
@ -408,6 +410,7 @@ static void load_aik(private_pts_t *this)
{
DBG1(DBG_PTS, "AIK public key is not available");
}
}
/* Load AIK item into TPM 1.2 object */
tpm_12 = (tpm_tss_trousers_t *)this->tpm;