├── .clang-format ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci-workflow.yml │ ├── codeql-workflow.yml │ ├── codespell.yml │ ├── guidelines_enforcer.yml │ ├── lint-workflow.yml │ ├── unit_tests.yml │ └── wui.yml ├── .gitignore ├── .mdl.rb ├── .mdlrc ├── .pre-commit-config.yaml ├── .yamllint.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── clients └── wui │ ├── README.md │ ├── package.json │ ├── public │ ├── CNAME │ ├── index.html │ ├── logo.svg │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── AppExplanations │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── BackupButton │ │ │ ├── index.css │ │ │ └── index.js │ │ └── RestoreButton │ │ │ ├── index.css │ │ │ └── index.js │ ├── controller │ │ └── PasswordsManager.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── setupTests.js │ └── yarn.lock ├── glyphs ├── app_passwords_48px.png └── app_passwords_64px.gif ├── icons ├── apex_icon_passwords.png ├── flex_icon_passwords.png ├── nanox_icon_passwords.gif └── stax_icon_passwords.gif ├── ledger_app.toml ├── pytest.ini ├── src ├── apdu_handlers │ ├── dump_metadatas.c │ ├── get_app_config.c │ ├── handlers.h │ └── load_metadatas.c ├── app_main.c ├── ctaes │ ├── COPYING │ ├── README.md │ ├── ctaes.c │ └── ctaes.h ├── ctr_drbg.c ├── ctr_drbg.h ├── dispatcher.c ├── dispatcher.h ├── error.c ├── error.h ├── globals.c ├── globals.h ├── hid_mapping.c ├── hid_mapping.h ├── metadata.c ├── metadata.h ├── options.c ├── options.h ├── password.c ├── password.h ├── password_generation.c ├── password_generation.h ├── password_list.c ├── password_list.h ├── password_typing.c ├── password_typing.h ├── tests │ ├── tests.c │ └── tests.h ├── types.h └── ui │ ├── menu_nbgl.c │ ├── ui.h │ └── ui_passwords.c └── tests ├── functional ├── conftest.py ├── exception │ ├── __init__.py │ ├── device_exception.py │ └── types.py ├── passwordsManager_cmd.py ├── requirements.txt ├── setup.cfg ├── snapshots │ ├── apex_p │ │ ├── create_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ └── 00012.png │ │ ├── delete_all_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ │ ├── delete_one_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ └── 00008.png │ │ ├── disclaimer.png │ │ ├── home_screen.png │ │ ├── list_screen_populated.png │ │ ├── menu_screen.png │ │ ├── settings │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ └── 00006.png │ │ └── startup_choose_kbl.png │ ├── flex │ │ ├── create_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ └── 00012.png │ │ ├── delete_all_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ │ ├── delete_one_password │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ └── 00008.png │ │ ├── disclaimer.png │ │ ├── home_screen.png │ │ ├── list_screen_populated.png │ │ ├── menu_screen.png │ │ ├── settings │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ └── 00006.png │ │ └── startup_choose_kbl.png │ └── stax │ │ ├── create_password │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ ├── 00011.png │ │ └── 00012.png │ │ ├── delete_all_password │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ └── 00007.png │ │ ├── delete_one_password │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ └── 00008.png │ │ ├── disclaimer.png │ │ ├── home_screen.png │ │ ├── list_screen_populated.png │ │ ├── menu_screen.png │ │ ├── settings │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ └── 00006.png │ │ └── startup_choose_kbl.png ├── test_cmd.py ├── test_error_cmd.py ├── tests_vectors.py └── touch │ ├── __init__.py │ ├── navigator.py │ ├── screen.py │ ├── test_common.py │ ├── test_passwords.py │ └── test_settings.py └── unit ├── CMakeLists.txt ├── README.md ├── mocks └── os.h ├── test_hid_mapping.c └── test_password_list.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/ci-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/codeql-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/guidelines_enforcer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/guidelines_enforcer.yml -------------------------------------------------------------------------------- /.github/workflows/lint-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/lint-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.github/workflows/wui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.github/workflows/wui.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.mdl.rb -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.mdlrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/README.md -------------------------------------------------------------------------------- /clients/wui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/README.md -------------------------------------------------------------------------------- /clients/wui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/package.json -------------------------------------------------------------------------------- /clients/wui/public/CNAME: -------------------------------------------------------------------------------- 1 | passwords.ledger.com -------------------------------------------------------------------------------- /clients/wui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/index.html -------------------------------------------------------------------------------- /clients/wui/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/logo.svg -------------------------------------------------------------------------------- /clients/wui/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/logo192.png -------------------------------------------------------------------------------- /clients/wui/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/logo512.png -------------------------------------------------------------------------------- /clients/wui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/manifest.json -------------------------------------------------------------------------------- /clients/wui/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/public/robots.txt -------------------------------------------------------------------------------- /clients/wui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/App.css -------------------------------------------------------------------------------- /clients/wui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/App.js -------------------------------------------------------------------------------- /clients/wui/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/App.test.js -------------------------------------------------------------------------------- /clients/wui/src/components/AppExplanations/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/AppExplanations/index.css -------------------------------------------------------------------------------- /clients/wui/src/components/AppExplanations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/AppExplanations/index.js -------------------------------------------------------------------------------- /clients/wui/src/components/BackupButton/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/BackupButton/index.css -------------------------------------------------------------------------------- /clients/wui/src/components/BackupButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/BackupButton/index.js -------------------------------------------------------------------------------- /clients/wui/src/components/RestoreButton/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/RestoreButton/index.css -------------------------------------------------------------------------------- /clients/wui/src/components/RestoreButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/components/RestoreButton/index.js -------------------------------------------------------------------------------- /clients/wui/src/controller/PasswordsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/controller/PasswordsManager.js -------------------------------------------------------------------------------- /clients/wui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/index.css -------------------------------------------------------------------------------- /clients/wui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/index.js -------------------------------------------------------------------------------- /clients/wui/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/logo.svg -------------------------------------------------------------------------------- /clients/wui/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/src/setupTests.js -------------------------------------------------------------------------------- /clients/wui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/clients/wui/yarn.lock -------------------------------------------------------------------------------- /glyphs/app_passwords_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/glyphs/app_passwords_48px.png -------------------------------------------------------------------------------- /glyphs/app_passwords_64px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/glyphs/app_passwords_64px.gif -------------------------------------------------------------------------------- /icons/apex_icon_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/icons/apex_icon_passwords.png -------------------------------------------------------------------------------- /icons/flex_icon_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/icons/flex_icon_passwords.png -------------------------------------------------------------------------------- /icons/nanox_icon_passwords.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/icons/nanox_icon_passwords.gif -------------------------------------------------------------------------------- /icons/stax_icon_passwords.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/icons/stax_icon_passwords.gif -------------------------------------------------------------------------------- /ledger_app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/ledger_app.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/apdu_handlers/dump_metadatas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/apdu_handlers/dump_metadatas.c -------------------------------------------------------------------------------- /src/apdu_handlers/get_app_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/apdu_handlers/get_app_config.c -------------------------------------------------------------------------------- /src/apdu_handlers/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/apdu_handlers/handlers.h -------------------------------------------------------------------------------- /src/apdu_handlers/load_metadatas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/apdu_handlers/load_metadatas.c -------------------------------------------------------------------------------- /src/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/app_main.c -------------------------------------------------------------------------------- /src/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctaes/COPYING -------------------------------------------------------------------------------- /src/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctaes/README.md -------------------------------------------------------------------------------- /src/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctr_drbg.c -------------------------------------------------------------------------------- /src/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ctr_drbg.h -------------------------------------------------------------------------------- /src/dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/dispatcher.c -------------------------------------------------------------------------------- /src/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/dispatcher.h -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/error.c -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/error.h -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/hid_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/hid_mapping.c -------------------------------------------------------------------------------- /src/hid_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/hid_mapping.h -------------------------------------------------------------------------------- /src/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/metadata.c -------------------------------------------------------------------------------- /src/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/metadata.h -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/options.h -------------------------------------------------------------------------------- /src/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password.c -------------------------------------------------------------------------------- /src/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password.h -------------------------------------------------------------------------------- /src/password_generation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_generation.c -------------------------------------------------------------------------------- /src/password_generation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_generation.h -------------------------------------------------------------------------------- /src/password_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_list.c -------------------------------------------------------------------------------- /src/password_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_list.h -------------------------------------------------------------------------------- /src/password_typing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_typing.c -------------------------------------------------------------------------------- /src/password_typing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/password_typing.h -------------------------------------------------------------------------------- /src/tests/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/tests/tests.c -------------------------------------------------------------------------------- /src/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/tests/tests.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/types.h -------------------------------------------------------------------------------- /src/ui/menu_nbgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ui/menu_nbgl.c -------------------------------------------------------------------------------- /src/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ui/ui.h -------------------------------------------------------------------------------- /src/ui/ui_passwords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/src/ui/ui_passwords.c -------------------------------------------------------------------------------- /tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/conftest.py -------------------------------------------------------------------------------- /tests/functional/exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/exception/__init__.py -------------------------------------------------------------------------------- /tests/functional/exception/device_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/exception/device_exception.py -------------------------------------------------------------------------------- /tests/functional/exception/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/exception/types.py -------------------------------------------------------------------------------- /tests/functional/passwordsManager_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/passwordsManager_cmd.py -------------------------------------------------------------------------------- /tests/functional/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/requirements.txt -------------------------------------------------------------------------------- /tests/functional/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/setup.cfg -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00004.png: -------------------------------------------------------------------------------- 1 | ../list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00005.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00009.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00010.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00011.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/create_password/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/create_password/00012.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_all_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_all_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00006.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_all_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_all_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_one_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_one_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_one_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00007.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/delete_one_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/delete_one_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/disclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/list_screen_populated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/menu_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/settings/00003.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/settings/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/settings/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/settings/00006.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/apex_p/startup_choose_kbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/apex_p/startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00004.png: -------------------------------------------------------------------------------- 1 | ../list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00005.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00009.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00010.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00011.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/create_password/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/create_password/00012.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_all_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_all_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00006.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_all_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_all_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_one_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_one_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_one_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00007.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/delete_one_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/delete_one_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/disclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/list_screen_populated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/menu_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/settings/00003.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/settings/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/settings/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/settings/00006.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/flex/startup_choose_kbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/flex/startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00004.png: -------------------------------------------------------------------------------- 1 | ../list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00005.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00009.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00010.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00011.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/create_password/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/create_password/00012.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_all_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_all_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00006.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_all_password/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_all_password/00007.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00003.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_one_password/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_one_password/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_one_password/00006.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00007.png: -------------------------------------------------------------------------------- 1 | ../menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/delete_one_password/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/delete_one_password/00008.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/disclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/list_screen_populated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/list_screen_populated.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/menu_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/menu_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00000.png: -------------------------------------------------------------------------------- 1 | ../disclaimer.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00001.png: -------------------------------------------------------------------------------- 1 | ../startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00002.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/settings/00003.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/settings/00004.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/settings/00005.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/settings/00006.png: -------------------------------------------------------------------------------- 1 | ../home_screen.png -------------------------------------------------------------------------------- /tests/functional/snapshots/stax/startup_choose_kbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/snapshots/stax/startup_choose_kbl.png -------------------------------------------------------------------------------- /tests/functional/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/test_cmd.py -------------------------------------------------------------------------------- /tests/functional/test_error_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/test_error_cmd.py -------------------------------------------------------------------------------- /tests/functional/tests_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/tests_vectors.py -------------------------------------------------------------------------------- /tests/functional/touch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/touch/navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/touch/navigator.py -------------------------------------------------------------------------------- /tests/functional/touch/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/touch/screen.py -------------------------------------------------------------------------------- /tests/functional/touch/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/touch/test_common.py -------------------------------------------------------------------------------- /tests/functional/touch/test_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/touch/test_passwords.py -------------------------------------------------------------------------------- /tests/functional/touch/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/functional/touch/test_settings.py -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/unit/README.md -------------------------------------------------------------------------------- /tests/unit/mocks/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/unit/mocks/os.h -------------------------------------------------------------------------------- /tests/unit/test_hid_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/unit/test_hid_mapping.c -------------------------------------------------------------------------------- /tests/unit/test_password_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-passwords/HEAD/tests/unit/test_password_list.c --------------------------------------------------------------------------------