• Home
Name Date Size #Lines LOC

..--

result/06-Mar-2025-7574

README.mdD06-Mar-20251.2 KiB4630

UnsgnedReleasedProfileTemplate.jsonD06-Mar-20251.5 KiB2727

autosign.configD06-Mar-20252.7 KiB9372

autosign.pyD06-Mar-202510 KiB320248

createAppCertAndProfile.configD06-Mar-20251.6 KiB6046

createRootAndSubCert.configD06-Mar-20251.8 KiB5745

create_appcert_sign_profile.batD06-Mar-2025698 1716

create_appcert_sign_profile.shD06-Mar-2025650 151

create_root.batD06-Mar-2025695 1716

create_root.shD06-Mar-2025647 151

signElf.configD06-Mar-2025913 4029

signHap.configD06-Mar-2025903 3928

sign_elf.batD06-Mar-2025682 1716

sign_elf.shD06-Mar-2025634 151

sign_hap.batD06-Mar-2025682 1716

sign_hap.shD06-Mar-2025634 151

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