Home
last modified time | relevance | path

Searched +full:libtss2 +full:- +full:dev (Results 1 – 9 of 9) sorted by relevance

/external/tpm2-tss/src/tss2-tcti/
Dtctildr-nodl.c1 /* SPDX-License-Identifier: BSD-2-Clause */
3 * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
63 "libtss2-tcti-tbs.so.0",
64 "libtss2-tcti-tbs.so",
73 "libtss2-tcti-device.so.0",
74 "libtss2-tcti-device.so",
85 "libtss2-tcti-device.so.0",
86 "libtss2-tcti-device.so",
90 .conf = "/dev/tpmrm0",
91 .description = "Access to /dev/tpmrm0",
[all …]
Dtctildr-dl.c1 /* SPDX-License-Identifier: BSD-2-Clause */
3 * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
21 #include "tctildr-interface.h"
34 .file = "libtss2-tcti-default.so",
35 .description = "Access libtss2-tcti-default.so",
38 .file = "libtss2-tcti-tabrmd.so.0",
39 .description = "Access libtss2-tcti-tabrmd.so",
42 .file = "libtss2-tcti-device.so.0",
43 .conf = "/dev/tpmrm0",
44 .description = "Access libtss2-tcti-device.so.0 with /dev/tpmrm0",
[all …]
/external/tpm2-tss/test/unit/
Dtctildr-dl.c1 /* SPDX-License-Identifier: BSD-2-Clause */
23 #include "tss2-tcti/tctildr-interface.h"
24 #include "tss2-tcti/tctildr-dl.h"
25 #include "tss2-tcti/tctildr.h"
138 #define TEST_TCTI_NAME "test-tcti"
139 #define TEST_TCTI_CONF "test-conf"
155 #define TEST_TCTI_NAME_SO_0 TCTI_PREFIX"-"TEST_TCTI_NAME""TCTI_SUFFIX_0
174 #define TEST_TCTI_NAME_SO TCTI_PREFIX"-"TEST_TCTI_NAME""TCTI_SUFFIX
220 expect_string(__wrap_dlopen, filename, "libtss2-tcti-default.so"); in test_get_info_default_success()
224 expect_string(__wrap_dlopen, filename, "libtss2-tcti-libtss2-tcti-default.so.so.0"); in test_get_info_default_success()
[all …]
/external/tpm2-tss/
DREADME.md1 …x Build Status](https://travis-ci.org/tpm2-software/tpm2-tss.svg?branch=master)](https://travis-ci…
2 …projects/status/2rdmyn1ndkiavngn?svg=true)](https://ci.appveyor.com/project/tpm2-software/tpm2-tss)
3 …tus](https://api.cirrus-ci.com/github/tpm2-software/tpm2-tss.svg?branch=master)](https://cirrus-ci…
4 … Scan](https://img.shields.io/coverity/scan/3997.svg)](https://scan.coverity.com/projects/tpm2-tss)
5 …us](https://codecov.io/gh/tpm2-software/tpm2-tss/branch/master/graph/badge.svg)](https://codecov.i…
7 …shields.io/lgtm/alerts/g/tpm2-software/tpm2-tss.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/proj…
8 …elds.io/lgtm/grade/cpp/g/tpm2-software/tpm2-tss.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/proj…
9 …mentation Status](https://readthedocs.org/projects/tpm2-tss/badge/?version=latest)](https://tpm2-t…
10 …//oss-fuzz-build-logs.storage.googleapis.com/badges/tpm2-tss.svg)](https://bugs.chromium.org/p/oss
11 …es.gitter.im/tpm2-software/community.svg)](https://gitter.im/tpm2-software/community?utm_source=ba…
[all …]
DCHANGELOG.md6 ## [2.4.0] - 2020-03-11
8 - Added a new Feature API (FAPI) implementation
9 - Added Esys_TRSess_GetAuthRequired() ESAPI function
10 - Added Esys_TR_GetTpmHandle() SAPI function
11 - Added Esys_GetSysContext() SAPI function
12 - Added the with-sanitizer configure option
13 - Added CI for FreeBSD
16 - Changed MSSIM TCTI to be async capable
17 - Removed TCTI loaders from ESYS dependencies in pkg-config
18 - Changed getPollHandles to allow num_handles query
[all …]
Dconfigure.ac1 # SPDX-License-Identifier: BSD-2-Clause
2 # Copyright (c) 2015 - 2020 Intel Corporation
3 # Copyright (c) 2018 - 2020 Fraunhofer SIT sponsored by Infineon Technologies AG
6 AC_INIT([tpm2-tss],
8 [https://github.com/tpm2-software/tpm2-tss/issues],
10 [https://github.com/tpm2-software/tpm2-tss])
13 subdir-objects])
14 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) #Backward compatible setting of "silent-rules"
18 …le lib/tss2-sys.pc lib/tss2-esys.pc lib/tss2-mu.pc lib/tss2-tcti-device.pc lib/tss2-tcti-mssim.pc …
25 AX_IS_RELEASE(dash-version)
[all …]
/external/tpm2-tss/src/tss2-esys/
Desys_context.c1 /* SPDX-License-Identifier: BSD-2-Clause */
16 #include "tss2-tcti/tctildr-interface.h"
26 * Library libtss2-tcti-default.so (link to the preferred TCTI)
27 * Library libtss2-tcti-tabrmd.so (tabrmd)
28 * Device /dev/tpmrm0 (kernel resident resource manager)
29 * Device /dev/tpm0 (hardware TPM)
59 (*esys_context)->sys = calloc(1, syssize); in Esys_Initialize()
60 goto_if_null((*esys_context)->sys, "Error: During malloc.", in Esys_Initialize()
64 (*esys_context)->tcti_app_param = tcti; in Esys_Initialize()
73 r = Tss2_Sys_Initialize((*esys_context)->sys, syssize, tcti, abiVersion); in Esys_Initialize()
[all …]
/external/curl/.github/workflows/
Dosslq-linux.yml3 # SPDX-License-Identifier: curl
5 name: osslq-linux
10 - master
11 - '*/ci'
12 paths-ignore:
13 - '**/*.md'
14 - '**/CMakeLists.txt'
15 - '.azure-pipelines.yml'
16 - '.circleci/**'
17 - '.cirrus.yml'
[all …]
Dngtcp2-linux.yml3 # SPDX-License-Identifier: curl
5 name: ngtcp2-linux
10 - master
11 - '*/ci'
12 paths-ignore:
13 - '**/*.md'
14 - '**/CMakeLists.txt'
15 - '.azure-pipelines.yml'
16 - '.circleci/**'
17 - '.cirrus.yml'
[all …]