From 087e54dcc99a36151677581eda92c321907988d9 Mon Sep 17 00:00:00 2001 From: jiangfangjie 00559066 Date: Tue, 11 May 2021 14:12:37 +0800 Subject: [PATCH 5/7] tpm2: Introduce SEED_COMPAT_LEVEL_RSA_PRIME_ADJUST_FIX but do not use yet --- src/tpm2/BackwardsCompatibility.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tpm2/BackwardsCompatibility.h b/src/tpm2/BackwardsCompatibility.h index aa79763..ded6936 100644 --- a/src/tpm2/BackwardsCompatibility.h +++ b/src/tpm2/BackwardsCompatibility.h @@ -42,6 +42,7 @@ 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_ORIGINAL }; -- 2.21.0.windows.1