// BUG #497 adding TblHosts parameter to this call so we can send the TlsPolicy to the HostAgentFactory for making the connection
private HashMap<String, ? extends IManifest> getHostPcrManifest(TblHosts tblHosts, TxtHost host) {
try {
// bug #538 check the host capability before we try to get a manifest
HostAgentFactory factory = new HostAgentFactory();
HostAgent agent = factory.getHostAgent(tblHosts);
if( agent.isTpmAvailable() ) {
HashMap<String, ? extends IManifest> pcrMap = getPcrModuleManifestMap(tblHosts, host);
return pcrMap;
}