1 #ifndef __VTPMMGR_MGMT_AUTHORITY_H
2 #define __VTPMMGR_MGMT_AUTHORITY_H
3 
4 struct mem_group *vtpm_new_group(const struct tpm_authdata *privCADigest);
5 int group_do_activate(struct mem_group *group, void* blob, int blobSize,
6 	void* resp, unsigned int *rlen);
7 int vtpm_do_quote(struct mem_group *group, const uuid_t uuid,
8 	const uint8_t* kern_hash, const struct tpm_authdata *data, TPM_PCR_SELECTION *sel, uint32_t extraInfoFlags,
9 	void* pcr_out, uint32_t *pcr_size, void* sig_out);
10 
11 #endif
12