1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/storage/tests
Pavol Rusnak 76eefd026f
all: let's use -Wno-missing-braces because clang does not respect
initialization of structs with = {0};
2019-10-11 09:59:32 +02:00
..
c all: let's use -Wno-missing-braces because clang does not respect 2019-10-11 09:59:32 +02:00
c0 storage: Add external salt parameter to unlock() and change_pin(). 2019-09-18 18:53:42 +02:00
python storage: explicitly reseed in PRNG tests 2019-08-12 12:57:25 +02:00
tests
Makefile
README.md
test.py

Trezor Storage tests

This repository contains all the necessary files to properly test Trezor's internal storage.

This repository consists of:

  • c: The actual C version is implemented in the main storage folder, however we need some other accompanying files to build it on computer.
  • c0: This is the older version of Trezor storage. It is used to test upgrades from the older format to the newer one.
  • python: Python version. Serves as a reference implementation and is implemented purely for the goal of properly testing the C version.
  • tests: Most of the tests run the two implementations against each other. Uses Pytest and hypothesis for random tests.