├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test ├── test.js └── test_resources │ ├── dfu_test_app_hrm_s132.zip │ └── secure_dfu_secure_dfu_ble_s132_pca10040_debug.hex └── utils ├── file_utils.js ├── little_endian_utils.js └── web_bluetooth_utils.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test_resources/dfu_test_app_hrm_s132.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/test/test_resources/dfu_test_app_hrm_s132.zip -------------------------------------------------------------------------------- /test/test_resources/secure_dfu_secure_dfu_ble_s132_pca10040_debug.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/test/test_resources/secure_dfu_secure_dfu_ble_s132_pca10040_debug.hex -------------------------------------------------------------------------------- /utils/file_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/utils/file_utils.js -------------------------------------------------------------------------------- /utils/little_endian_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/utils/little_endian_utils.js -------------------------------------------------------------------------------- /utils/web_bluetooth_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/secure-dfu-web-bluetooth/HEAD/utils/web_bluetooth_utils.js --------------------------------------------------------------------------------