Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
result/ | 12-May-2024 | - | 75 | 74 | ||
README.md | D | 12-May-2024 | 1.2 KiB | 46 | 30 | |
UnsgnedReleasedProfileTemplate.json | D | 12-May-2024 | 1.5 KiB | 27 | 27 | |
autosign.config | D | 12-May-2024 | 2.7 KiB | 93 | 72 | |
autosign.py | D | 12-May-2024 | 9.4 KiB | 298 | 228 | |
createAppCertAndProfile.config | D | 12-May-2024 | 1.6 KiB | 60 | 46 | |
createRootAndSubCert.config | D | 12-May-2024 | 1.8 KiB | 57 | 45 | |
create_appcert_sign_profile.bat | D | 12-May-2024 | 698 | 17 | 16 | |
create_appcert_sign_profile.sh | D | 12-May-2024 | 650 | 15 | 1 | |
create_root.bat | D | 12-May-2024 | 695 | 17 | 16 | |
create_root.sh | D | 12-May-2024 | 647 | 15 | 1 | |
signHap.config | D | 12-May-2024 | 903 | 39 | 28 | |
sign_hap.bat | D | 12-May-2024 | 682 | 17 | 16 | |
sign_hap.sh | D | 12-May-2024 | 634 | 15 | 1 |
README.md
1# Instructions 2Autosign help you to sign app more efficiently 3 4 5## Dependency 6This signature script depends on Python 3.x. 7 8 9 10## Configuration 11 12Use your favorite text editor to open `autosign.config` to configure everything. 13Below config must be replaced: 14* config.signtool 15* All password 16 17### 1. For Windows 18 191. Run the `start_creat.bat` file in the terminal to generate certs. 202. Prepare your unsigned app and provision profile. Make sure correct config file location. 213. Run the `start_sign.bat` file in the terminal to start signing. 224. The generated artifacts will be saved in the folder you set in `config.targetDir` as default. 23 24### 2. For Linux or MacOS 25 26 271. Add executable permission into `start_create.sh` and `start_sign.sh`. 28 29 ```bash 30 chmod a+x start_sign.sh 31 32 chmod a+x start_create.sh 33 ``` 34 352. Run the `start_create.sh` file in the terminal to generate certs. 36 37 ```bash 38 ./start_create.sh 39 ``` 403. Prepare your unsigned app and provision profile. Make sure correct config file location. 414. Run the `start_sign.sh` file in the terminal to start signing. 42 ```bash 43 ./start_sign.sh 44 ``` 455. The generated artifacts will be saved in the folder you set in `config.targetDir` as default. 46