/
githubmirror
/
libtpms
Обзор
Документация
Войти
/
githubmirror
/
libtpms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/tpm2/BackwardsCompatibility.h
19 строк
501 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 2017,2018. #ifndef BACKWARDS_COMPATIBILITY_H #define BACKWARDS_COMPATIBILITY_H #include "compiler.h" typedef UINT8 SEED_COMPAT_LEVEL; enum { SEED_COMPAT_LEVEL_ORIGINAL = 0, /* original TPM 2 code up to rev155 */ SEED_COMPAT_LEVEL_RSA_PRIME_ADJUST_FIX = 1, /* RsaAdjustPrimeCandidate was fixed */ SEED_COMPAT_LEVEL_LAST = SEED_COMPAT_LEVEL_RSA_PRIME_ADJUST_FIX }; #endif /* BACKWARDS_COMPATIBILITY_H */