├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── compile_commands.json ├── launch.json └── settings.json ├── application.fam ├── certs ├── cert.der └── cert_key.u2f ├── enclave_manager.c ├── enclave_manager.png ├── images ├── .gitkeep ├── cvc_36x36.png ├── r.png └── w.png ├── readme.md └── utils └── aio_keygen.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.vscode/compile_commands.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/application.fam -------------------------------------------------------------------------------- /certs/cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/certs/cert.der -------------------------------------------------------------------------------- /certs/cert_key.u2f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/certs/cert_key.u2f -------------------------------------------------------------------------------- /enclave_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/enclave_manager.c -------------------------------------------------------------------------------- /enclave_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/enclave_manager.png -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/cvc_36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/images/cvc_36x36.png -------------------------------------------------------------------------------- /images/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/images/r.png -------------------------------------------------------------------------------- /images/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/images/w.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/readme.md -------------------------------------------------------------------------------- /utils/aio_keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shilapi/flipper-enclave-manager/HEAD/utils/aio_keygen.py --------------------------------------------------------------------------------