TZ
← All projectsTrezor

Trezor firmware

Firmware monorepo for Trezor One, Model T, and Safe devices.

BitcoinHardware walletsNormal
Repository coverage

2667 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

921security candidates311second-pass queue2660AI analyses
322commits · 30 days
549commits · 60 days
1358commits · 180 days
2638commits · 365 days
Backfill bands
Aug 5 → Feb 61298 seen115 candidatesComplete
Feb 6 → Jun 6775 seen58 candidatesComplete
Jun 6 → Jul 6217 seen13 candidatesComplete
Jul 6 → Aug 5360 seen54 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

66/100 average clarity
478Strong · 80–100
1321Adequate · 60–79
863Thin · 40–59
5Opaque · 0–39
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
tychovrahe292104292461
Roman Zeyde577181575272
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík23823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 49 minutes ago

Low 27 AI analysisMessage 93 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(core): digest EIP-1559/EIP-7702 magic without RLP encoding

This commit is a small internal cleanup in Trezor's Ethereum signing code. It changes how two special 'magic' bytes (the transaction type markers for newer Ethereum transaction formats) are fed into the cryptographic hash. Previously the c…

Refactor of cryptographic hashing path for Ethereum transaction signingRemoval of implicit assumption that RLP encodes small integers as single bytesChange affects EIP-1559 and EIP-7702 transaction type markers
2362bc6fby Roman Zeyde+6−32 files
No security note in commit
Informational 15 AI analysisMessage 98 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): test RLP self-encoding bytestrings

This commit only adds a new unit test to the Trezor firmware codebase. It verifies that very short Ethereum RLP-encoded byte strings and small positive integers encode to themselves, which is a known property of the RLP specification. No p…

41538733by Roman Zeyde+16−01 file
No security note in commit
Informational 18 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core): remove sha1 from regular FW

This commit removes the SHA-1 hashing function from the regular Trezor firmware. SHA-1 is an old, weak hash algorithm that is no longer considered secure for sensitive uses. The change deletes the code that exposes SHA-1 to apps running on…

Removal of a deprecated cryptographic primitive (SHA-1) from the firmware API surfaceReduction of attack surface and prevention of future misuse of a collision-vulnerable hashNo direct vulnerability patch or memory-safety bug is present in the diff
16d15774by M1nd3r+0−2006 files
No security note in commit
Low 27 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): pass static public key to `noise_xxpsk3_*_init()`

This commit changes how a cryptographic library sets up secure connections. Previously, the code automatically calculated the public key from the private key. Now, the caller must provide the public key directly. This is a code-quality ref…

Cryptographic key handling changed: public key is now supplied rather than derivedPotential reduction of key-mismatch risk if caller provides correct public keyNew null-pointer check added for static_public_key
1b3128a4by Ondřej Vejpustek+20−92 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): change order of parameters

This commit simply reorders the arguments of an internal function called dh() and updates every place that calls it. The actual math and security behavior are unchanged; it is a code cleanup with no security effect.

33a119eeby Ondřej Vejpustek+15−151 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): prefix enums

This commit simply renames two groups of internal status labels (called enums) in the Trezor firmware's cryptographic code. The old names like WAITING_FOR_REQUEST1 were shared between two different parts of the code, so the developer gave …

f1c74046by Ondřej Vejpustek+26−222 files
No security note in commit
Low 37 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(crypto): prevent calling `memzero(NULL, ...)`

This commit fixes three places in the Trezor firmware's cryptographic code where a memory-clearing function could be called with a NULL pointer. In practice, passing NULL to memzero is harmless on Trezor's platform (it does nothing), but i…

NULL pointer passed to memory-zeroing helper in cryptographic codeUndefined behavior in C standard library contractDefensive hardening in Noise protocol implementation
0394e934by Ondřej Vejpustek+11−51 file
No security note in commit
Informational 18 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): return remote static key from `noise_xxpsk3_*_handle_*()`

This commit is a code cleanup (refactor) for the cryptographic handshake code used in Trezor devices. It changes how the other party's long-term public key is returned to the caller: instead of storing it inside an internal state structure…

Removal of long-term public key storage from internal handshake stateCaller-supplied output buffer for remote static public key reduces internal secret retentionError-path memzero of returned key material on failure
3ead1aa6by Ondřej Vejpustek+79−423 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ProjectProfile to ProjectConfig

This commit is a simple rename from 'ProjectProfile' to 'ProjectConfig' in two Rust source files. It only changes variable names, struct names, and error messages. There is no change to program logic, security behavior, or how data is hand…

581b37bcby cepetr+18−182 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce ResolvedBuildArgs

This commit is a straightforward internal code refactor in Trezor's build tooling. It introduces a new ResolvedBuildArgs structure that centralizes default values for command-line build options before they are used. There is no change to u…

c24d1be8by cepetr+99−295 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): make build args tristate

This commit is a straightforward internal refactor of the Trezor firmware build tool's command-line argument handling. It changes many on/off flags from plain booleans to optional booleans so they can explicitly be set to true, false, or l…

271e249aby cepetr+57−561 file
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce build options

This commit is a straightforward internal code reorganization in Trezor's build tooling. It moves build-option definitions from one Rust source file to a new module and adds the ability to load those options from a configuration file. Ther…

75085e2aby cepetr+275−2007 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce build presets

This commit is a developer tooling change for the Trezor firmware build system. It introduces 'build presets'—named configuration bundles stored in TOML files—so developers can select common build settings with a single command-line flag i…

eefe8f7fby cepetr+397−419 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): upgrade manifest.yaml for tf-tools 0.3.0

This commit is a routine update to a build-system manifest file used by Trezor's internal tooling. It reorganizes and re-labels feature flags (for example, moving options between 'Features', 'Debugging', and 'Signing' groups and simplifyin…

57b28b89by cepetr+86−1351 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(core): add tf-tools 0.3.1+ configuration file

This commit adds a single configuration file for a Trezor developer tool (a VS Code extension). It only points the tool to existing folders in the repository and contains no executable code, no secrets, and no changes to firmware behavior.…

e554f618by cepetr+8−01 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

This commit is a simple internal code cleanup: it renames a Rust data structure called ResolvedBuild to ResolvedBuildFeatures and updates the places that use it. There are no functional changes, no security fixes, and no changes to how the…

aaa2780bby cepetr+5−52 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(core): fix up clippy warnings in storage.rs

This is a tiny code cleanup commit that replaces two calls to `ptr::null()` with Rust's `unwrap_or_default()` to silence automated Clippy lint warnings. It does not change what value is produced (still a null pointer when no salt is provid…

62354461by cepetr+2−21 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): simplify dependencies

This commit is a straightforward internal code cleanup in Trezor's build tooling. It moves a data structure and two helper methods from one Rust source file to another and updates callers accordingly. There is no change to user-facing beha…

6268349fby cepetr+9−193 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

docs: add xtask documentation

This commit only adds documentation. It updates the table of contents and adds a new markdown page plus a diagram explaining the project's 'xtask' build helper. No code, build scripts, or firmware logic was changed, so it cannot introduce …

4879dababy cepetr+296−03 files
No security note in commit
Informational 17 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce project-toml build-options

This commit is a build-system refactoring for Trezor firmware. It moves the mapping of command-line build options to Rust/cargo features out of hard-coded Rust logic and into per-project TOML files. It also adds a small change so debug bui…

Build-option mapping now lives in project.toml files, increasing the attack surface for supply-chain/build-configuration tamperingMakefile change automatically enables debug-link for PYOPT=0 debug buildsValidation added to reject storage_insecure_testing_mode in production builds
d44de007by cepetr+681−40817 files
No security note in commit
Repository ledger

Explore captured commits

Expand any commit for its author, full message, clarity score, changed files, triage signals, analysis, and source link.

Lower-prioritydocs(core): fix date format for consistencyby obrusvit · 36e18082 · Jan 26, 2026 · 2 filesMessage 72 · AdequateInformational 15Details
Commit message · obrusvit

docs(core): fix date format for consistency

[no changelog]

(cherry picked from commit 43705b170736769a24ce165007d08320d3b63a55)

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit only changes the wording of a date in two changelog files, switching from 'December 10th 2025' to '10th December 2025' for consistency. It does not touch any program code, build scripts, or security-related documentation.

Lower-prioritychore: update releases.jsonby obrusvit · d2182591 · Jan 26, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · obrusvit

chore: update releases.json

[no changelog]

(cherry picked from commit 479228c231cf9cd44b244f1c24bbb16ac2d021ab)

62/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit simply adds two new firmware version entries to a release metadata file. It does not change any code, cryptographic checks, or device behavior. There is no security issue visible in the change itself.

Lower-prioritychore: update definitions timestampby obrusvit · e758c51d · Jan 26, 2026 · 1 fileMessage 70 · AdequateInformational 15Details
Commit message · obrusvit

chore: update definitions timestamp

- this is forgotten from commit 0ec0805d94a4b45dab584462b15085f153100c26

[no changelog]

(cherry picked from commit 03ef48ee069221df0c6b1aa3667cddcaeb3508be)

70/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 15/100

This commit only updates a timestamp-style version number in a definitions file. It is a follow-up housekeeping change with no visible security implications.

Security candidatefix(crypto): Fix side-channel vulnerability in BIP-39 mnemonic processingby Martin Pastyřík · 9b1c0620 · Jan 26, 2026 · 7 filesMessage 100 · StrongHigh 76Details
Commit message · Martin Pastyřík

fix(crypto): Fix side-channel vulnerability in BIP-39 mnemonic processing

Fix function `mnemonic_to_bits` to be constant time. Replace binary search over the wordlist with a linear search to ensure the same number of comparisons.
Introduce function `constant_time_memeq` that comapres two parts of memory in costant time.
Remove integrity check in legacy to reduce the number of computations over seed.

(cherry picked from commit 4e6f0dee81b4d9e553d247faa3194b8053b74dcb)

100/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode✓ Names security-relevant behavior explicitly
Why it was queued
explicit security languageconstant-time or timing behaviorcryptography-sensitive pathboot or update path
AI analysis · High 76/100

This commit fixes a timing side-channel flaw in how Trezor hardware wallets convert a user's recovery phrase (BIP-39 mnemonic words) into secret seed bits. The old code used a fast but variable-time binary search over the word list, which could let a local attacker with precise timing measurements learn information about the recovery words. The patch replaces it with a constant-time linear comparison and also removes an extra integrity check in older (legacy) Trezor firmware to reduce how often the secret seed is processed.

Security candidatechore(core): bump VERSION to 2.10.1by obrusvit · 10d30453 · Jan 26, 2026 · 8 filesMessage 92 · StrongInformational 15Details
Commit message · obrusvit

chore(core): bump VERSION to 2.10.1

- re-bump to 2.10.1 because the previous cherry-picked commit changed it
to the version of the release branch
- this was caused because we changed the version while the release
process was already underway

[no changelog]

92/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode
Why it was queued
signing or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a routine version bump from 2.10.0 to 2.10.1 in the Trezor firmware repository. It only changes version numbers in a header file and translation metadata, plus updates the signed translation package timestamp and fingerprint. There are no code behavior changes and no security relevance.

Security candidatechore(core): bump VERSION & FIX_VERSION to 2.10.0by obrusvit · f5309443 · Jan 26, 2026 · 15 filesMessage 85 · StrongInformational 15Details
Commit message · obrusvit

chore(core): bump VERSION & FIX_VERSION to 2.10.0

- security fix forces us to bump FIX_VERSION
- semantically, it means bumping VERSION_MINOR
- also modify CHANGELOGs from 2.9.7 to 2.10.0

[no changelog]

(cherry picked from commit 25b05677cad6b1c3e17dc32576be8c14a064ad17)

85/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Names security-relevant behavior explicitly
Why it was queued
explicit security languagesigning or wallet pathboot or update path
AI analysis · Informational 15/100

This commit only changes version numbers and release metadata. It bumps the firmware version from 2.9.7 to 2.10.0 and updates related changelog entries and translation package signatures. The commit message mentions that a separate security fix forced the version bump, but this commit itself does not contain any code fix.

Security candidatedocs(legacy): changelog for 1.14.0by obrusvit · 8919d74e · Jan 26, 2026 · 7 filesMessage 72 · AdequateInformational 15Details
Commit message · obrusvit

docs(legacy): changelog for 1.14.0

[no changelog]

(cherry picked from commit b3745feea08aa50ddb74341471fc840ec15dde39)

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
boot or update path
AI analysis · Informational 15/100

This commit only updates the changelog and release notes for Trezor legacy firmware version 1.14.0. It deletes six small draft changelog files and adds their contents to the main CHANGELOG.md. No actual code, logic, or security behavior is changed in this commit.

Security candidatefix(core/prodtest): fix error handling in `prodtest_tropic_get_access_credential()`by Ondřej Vejpustek · 97a266ea · Jan 23, 2026 · 1 fileMessage 62 · AdequateLow 34Details
Commit message · Ondřej Vejpustek

fix(core/prodtest): fix error handling in `prodtest_tropic_get_access_credential()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
credential or privilege state
AI analysis · Low 34/100

This is a one-line bug fix in a Trezor hardware wallet factory/production testing tool. The function `prodtest_tropic_get_access_credential()` now jumps to cleanup code when it fails to retrieve a public key, instead of continuing to run as if nothing went wrong. Without the fix, the tool could keep processing and potentially leak or mishandle sensitive key material after an error. The affected code is in a production-test (manufacturing) program, not the main wallet firmware users interact with.

Lower-priorityfeat(core/prodtest): introduce logging in `tropic_get_pubkey()` and `tropic_get_cert_chain_ptr()`by Ondřej Vejpustek · 87899562 · Jan 23, 2026 · 3 filesMessage 62 · AdequateInformational 19Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): introduce logging in `tropic_get_pubkey()` and `tropic_get_cert_chain_ptr()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 19/100

This commit only adds extra diagnostic log messages to two internal helper functions used during factory production testing of the Tropic secure chip. It does not change how keys or certificates are handled, and the new logging is compiled out of normal user firmware. There is no direct security vulnerability here; it is a minor debugging improvement.

Lower-priorityfeat(core/prodtest): introduce logging in `pairing_key_write()`by Ondřej Vejpustek · ad8c8ff6 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 20Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): introduce logging in `pairing_key_write()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 20/100

This change only adds diagnostic log messages to a production-test helper function that writes pairing keys to a Tropic secure chip during factory testing. It does not alter security logic, access controls, or cryptographic operations; it merely makes failures easier to see during manufacturing tests.

Lower-priorityfeat(core/prodtest): improve logging in `check_device_cert_chain()`by Ondřej Vejpustek · 36f87184 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): improve logging in `check_device_cert_chain()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds an error log message when a cryptographic signing operation fails during a production-test command. It does not change any security logic, access controls, or behavior; it merely reports the specific failure reason instead of silently returning false.

Lower-priorityfeat(core/prodtest): log tropic error messages instead of codesby Ondřej Vejpustek · 82e11ee5 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): log tropic error messages instead of codes

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only changes error messages in a Trezor factory production-test tool. Instead of printing numeric error codes, it prints human-readable text descriptions. There is no change to security logic, no bug fix, and no vulnerability.

Lower-priorityfeat(core/prodtest): improve logging in `tropic_locked_status()`by Ondřej Vejpustek · ef77abc9 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): improve logging in `tropic_locked_status()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds extra log/trace messages to a production-test command that checks whether a Tropic secure chip is locked. It does not change any logic, return values, access controls, or behavior of the device. There is no security issue visible in the diff.

Lower-priorityfeat(core/prodtest): introduce logging in `tropic_wait_for_ready()`by Ondřej Vejpustek · 45ee386a · Jan 23, 2026 · 3 filesMessage 62 · AdequateInformational 19Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): introduce logging in `tropic_wait_for_ready()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 19/100

This commit only adds diagnostic log messages to a hardware testing tool. It changes a function so it can optionally print 'Tropic driver is not initialized' or 'Tropic is busy' during production testing. There is no change to normal wallet firmware behavior and no security fix or vulnerability introduced.

Lower-priorityfeat(core/prodtest): introduce logging in `tropic_custom_session_start()`by Ondřej Vejpustek · c6118b08 · Jan 23, 2026 · 4 filesMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): introduce logging in `tropic_custom_session_start()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds extra diagnostic logging and changes a function signature so the logging can be routed to the production-test command-line interface. It does not change how cryptographic sessions are established or which keys are used. There is no indication this fixes or introduces a security vulnerability.

Lower-prioritychore(core/prodtest): add changelog entryby Ondřej Vejpustek · 5367e873 · Jan 23, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

chore(core/prodtest): add changelog entry

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds a one-line changelog note saying that logging of Tropic commands was improved. There is no code change, no bug fix, and no security-relevant content in the diff.

Lower-priorityfeat(core/prodtest): improve logging in `pubkey_read()`by Ondřej Vejpustek · 6f8df120 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): improve logging in `pubkey_read()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 18/100

This is a small logging improvement in a Trezor factory production-test command. It splits one combined error check into two separate checks so the user sees a clearer message: either the key-read operation failed, or the key's curve type is not the expected P-256. There is no functional behavior change and no obvious security vulnerability.

Lower-priorityfeat(core/prodtest): improve logging in `cert_write()`by Ondřej Vejpustek · 07536477 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 14Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): improve logging in `cert_write()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 14/100

This commit only improves the error messages shown during a production-line test command for the Tropic secure element. It replaces vague messages like 'Unable to write certificate' with more specific ones that include the underlying error code. There is no change to security logic, access control, or data handling.

Lower-priorityfeat(core/prodtest): use traces instead of errors in `tropic_is_paired()`by Ondřej Vejpustek · 8dcda722 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): use traces instead of errors in `tropic_is_paired()`

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 18/100

This commit changes how a production-test tool reports problems when checking whether a Tropic secure chip is paired. Previously, the check function itself printed error messages; now it only records diagnostic traces, and the calling commands decide whether to report an error. It also fixes two callers that were passing a dummy/NULL context so they now pass the real command-line interface, meaning their 'pairing required' error messages will actually be shown. This is a code-quality and diagnostics change in a factory/testing tool, not a fix for an exploitable security flaw in end-user firmware.

Lower-priorityfix(templates): use double quotes for backwards compatibility in pythonby PrisionMike · df8b9368 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · PrisionMike

fix(templates): use double quotes for backwards compatibility in python

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
translation-only discount
AI analysis · Informational 15/100

This is a tiny build-tool fix in a code-generation template. It swaps single quotes for double quotes inside a Python f-string so the template works with older Python versions that don't allow single quotes inside f-string braces. There is no runtime security effect on the Trezor firmware itself.

Lower-priorityrefactor(core): fix typo in constant nameby Ondřej Vejpustek · 79d60075 · Jan 23, 2026 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

refactor(core): fix typo in constant name

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit simply renames a constant from TROPIC_MAC_AND_DESTROY_SLOTS_COUNT to TROPIC_MAC_AND_DESTROY_SLOT_COUNT (singular) across three files. The numeric value stays the same (64), and no program behavior changes. It is a typo-fixing refactor with no security relevance.

Lower-priorityrefactor(core/prodtest): prefix global variables in prodtest_tropic.cby Ondřej Vejpustek · f240c2e0 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

refactor(core/prodtest): prefix global variables in prodtest_tropic.c

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a simple code cleanup: it renames a few internal variables in a production-test file by adding a 'g_' prefix to indicate they are global variables. No behavior of the code changes, and there is no security fix or vulnerability introduced.

Lower-priorityfeat(core/prodtest): introduce tropic stress testby Ondřej Vejpustek · 98be2441 · Jan 23, 2026 · 5 filesMessage 67 · AdequateInformational 20Details
Commit message · Ondřej Vejpustek

feat(core/prodtest): introduce tropic stress test

67/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
AI analysis · Informational 20/100

This commit adds a new factory/production-test command called tropic-stress-test. It is meant for manufacturing diagnostics and repeatedly exercises the Tropic secure chip's session, MAC-and-destroy, and signing functions to make sure the chip does not enter an alarm state. There is no indication this change fixes a security bug or introduces a vulnerability; it is a testing feature.

Lower-priorityrefactor(core/prodtest): make global tropic configuration constantby Ondřej Vejpustek · 2354f038 · Jan 23, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Ondřej Vejpustek

refactor(core/prodtest): make global tropic configuration constant

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a minor code cleanup in Trezor's production-test tool. It adds the 'const' keyword to two large configuration tables so the compiler knows they should not be modified at runtime. There is no functional change, no bug fix, and no security vulnerability indicated in the diff or commit message.

Lower-prioritychore(core): add conversion.h for float bit-equivalent conversionsby tychovrahe · ca958d71 · Jan 23, 2026 · 4 filesMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): add conversion.h for float bit-equivalent conversions

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a routine code cleanup. It introduces a small helper file that provides a standard, safe way to convert between float numbers and their raw 32-bit representations. It then replaces a few existing hand-written conversions in the battery telemetry code with these helpers. There is no functional change and no security issue.