Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Self-Forcing encrypted full archive
|
| 2 |
+
|
| 3 |
+
This private dataset repo stores an encrypted full archive of `/apdcephfs/private_kyezou/code/Self-Forcing`.
|
| 4 |
+
|
| 5 |
+
- Archive: `Self-Forcing_full_20260611_213308.tar.gz.aes`
|
| 6 |
+
- Size bytes: `42017822464`
|
| 7 |
+
- SHA256: `8531bcc591aad6b9bb572f43b91037f58891dae22f2e69201ebbcf89880af76a`
|
| 8 |
+
- Encryption: `openssl enc -aes-256-cbc -salt -pbkdf2`
|
| 9 |
+
- Password: provided separately by the owner; not stored in this repo.
|
| 10 |
+
|
| 11 |
+
Restore example after download:
|
| 12 |
+
|
| 13 |
+
```bash
|
| 14 |
+
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 -
|
| 15 |
+
```
|