/
githubmirror
/
libtpms
Обзор
Документация
Войти
/
githubmirror
/
libtpms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/tpm2/BackwardsCompatibilityBitArray.h
23 строки
687 B
Stefan Berger
tpm2: Reformat some libtpms code with clang-format from 'upstream'
09 мар 2026, 17:10
09 мар 2026, 17:10
bc4d5e8
Код
Авторство
О чём код?
// SPDX-License-Identifier: BSD-2-Clause // (c) Copyright IBM Corporation 2023. #ifndef BACKWARDS_COMPATIBILITY_BIT_ARRAY_H #define BACKWARDS_COMPATIBILITY_BIT_ARRAY_H #include "Tpm.h" #include <tpm_public/TpmTypes.h> TPM_RC ConvertFromCompressedBitArray(BYTE* inAuditCommands, size_t inAuditCommandsLen, BYTE* outAuditCommands, size_t outAuditCommandsLen); TPM_RC ConvertToCompressedBitArray(BYTE* inAuditCommands, size_t inAuditCommandsLen, BYTE* outAuditCommands, size_t outAuditCommandsLen); #endif