| license: other | |
| ## Reassemble and Extract | |
| ```bash | |
| cat stage_run_hunyuan_package_20260618.tar.zst.enc.part-* | PACKAGE_PASSWORD='<password provided out of band>' openssl enc -d -aes-256-cbc -pbkdf2 -pass env:PACKAGE_PASSWORD | zstd -d | tar -xf - | |
| ``` | |
| After extraction: | |
| ```bash | |
| cd stage_run_hunyuan_package | |
| bash scripts/verify_assets.sh | |
| bash scripts/sample_stage1_smoke.sh | |
| SP_SIZE=8 bash scripts/sample_stage2_smoke.sh | |
| ``` | |
| Use `SHA256SUMS` to verify the uploaded encrypted parts before extraction. | |