trusted-type.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (C) 2010 IBM Corporation
  3. * Author: David Safford <safford@us.ibm.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, version 2 of the License.
  8. */
  9. #ifndef _KEYS_TRUSTED_TYPE_H
  10. #define _KEYS_TRUSTED_TYPE_H
  11. #include <linux/key.h>
  12. #include <linux/rcupdate.h>
  13. #include <linux/tpm.h>
  14. #define MIN_KEY_SIZE 32
  15. #define MAX_KEY_SIZE 128
  16. #define MAX_BLOB_SIZE 512
  17. #define MAX_PCRINFO_SIZE 64
  18. struct trusted_key_payload {
  19. struct rcu_head rcu;
  20. unsigned int key_len;
  21. unsigned int blob_len;
  22. unsigned char migratable;
  23. unsigned char key[MAX_KEY_SIZE + 1];
  24. unsigned char blob[MAX_BLOB_SIZE];
  25. };
  26. struct trusted_key_options {
  27. uint16_t keytype;
  28. uint32_t keyhandle;
  29. unsigned char keyauth[TPM_DIGEST_SIZE];
  30. unsigned char blobauth[TPM_DIGEST_SIZE];
  31. uint32_t pcrinfo_len;
  32. unsigned char pcrinfo[MAX_PCRINFO_SIZE];
  33. int pcrlock;
  34. };
  35. extern struct key_type key_type_trusted;
  36. #endif /* _KEYS_TRUSTED_TYPE_H */