| # Self-Forcing encrypted full archive | |
| This public dataset repo stores an encrypted full archive of `/apdcephfs/private_kyezou/code/Self-Forcing`. | |
| The archive content is encrypted before upload. The password is provided separately by the owner and is not stored in this repo. | |
| - Archive: `Self-Forcing_full_20260611_213308.tar.gz.aes` | |
| - Size bytes: `42017822464` | |
| - SHA256: `8531bcc591aad6b9bb572f43b91037f58891dae22f2e69201ebbcf89880af76a` | |
| - Encryption: `openssl enc -aes-256-cbc -salt -pbkdf2` | |
| Restore example after download: | |
| ```bash | |
| openssl enc -d -aes-256-cbc -pbkdf2 -pass file:/path/to/password.txt -in Self-Forcing_full_20260611_213308.tar.gz.aes | pigz -dc | tar -xf - | |
| ``` | |