├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ISSUERS.md ├── LICENSE ├── README.md ├── demo ├── index.html └── tt_demo.cc ├── deps.cmake ├── include └── private_state_token.h └── src └── private_state_token.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/ISSUERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/tt_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/demo/tt_demo.cc -------------------------------------------------------------------------------- /deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/deps.cmake -------------------------------------------------------------------------------- /include/private_state_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/include/private_state_token.h -------------------------------------------------------------------------------- /src/private_state_token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/libtrusttoken/HEAD/src/private_state_token.cc --------------------------------------------------------------------------------