1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-08-05 05:15:27 +00:00

feat(legacy): disable ownership proof anti-exfil protocol

[no changelog]
This commit is contained in:
Ondřej Vejpustek 2025-03-25 16:34:23 +01:00
parent 12ccfcd43c
commit c43900e14a

View File

@ -547,6 +547,13 @@ void fsm_msgGetOwnershipProof(const GetOwnershipProof *msg) {
CHECK_INITIALIZED
if (msg->has_entropy_commitment) {
fsm_sendFailure(FailureType_Failure_ProcessError,
_("Anti-exfil not supported"));
layoutHome();
return;
}
const CoinInfo *coin = fsm_getCoin(msg->has_coin_name, msg->coin_name);
if (!coin) return;