tpm_tss.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (C) 2016 Andreas Steffen
  3. * HSR Hochschule fuer Technik Rapperswil
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. */
  15. #include "tpm_tss.h"
  16. #include "tpm_tss_tss2.h"
  17. #include "tpm_tss_trousers.h"
  18. /**
  19. * Register plugins if built statically
  20. */
  21. #ifdef STATIC_PLUGIN_CONSTRUCTORS
  22. #include "plugin_constructors.c"
  23. #endif
  24. /**
  25. * Described in header.
  26. */
  27. bool libtpmtss_init(void)
  28. {
  29. return tpm_tss_tss2_init();
  30. }
  31. /**
  32. * Described in header.
  33. */
  34. void libtpmtss_deinit(void)
  35. {
  36. tpm_tss_tss2_deinit();
  37. }
  38. typedef tpm_tss_t*(*tpm_tss_create)(void);
  39. /**
  40. * See header.
  41. */
  42. tpm_tss_t *tpm_tss_probe(tpm_version_t version)
  43. {
  44. tpm_tss_create stacks[] = {
  45. tpm_tss_tss2_create,
  46. tpm_tss_trousers_create,
  47. };
  48. tpm_tss_t *tpm;
  49. int i;
  50. for (i = 0; i < countof(stacks); i++)
  51. {
  52. tpm = stacks[i]();
  53. if (tpm)
  54. {
  55. if (version == TPM_VERSION_ANY || version == tpm->get_version(tpm))
  56. {
  57. return tpm;
  58. }
  59. }
  60. }
  61. return NULL;
  62. }