jackyhate commited on
Commit
f1c1fe1
·
verified ·
1 Parent(s): 4af8a2e

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # editmorph encrypted full archive
2
+
3
+ This public dataset repo stores an encrypted full archive of `/apdcephfs/private_kyezou/code/editmorph`.
4
+
5
+ The archive content is encrypted before upload. The password is provided separately by the owner and is not stored in this repo.
6
+
7
+ - Archive: `editmorph_full_20260611_231332.tar.gz.aes`
8
+ - Size bytes: `72760432`
9
+ - SHA256: `775bf80a2c752e14d834166e514324c9b4e696d242438f3d47d04302bb1a3097`
10
+ - Encryption: `openssl enc -aes-256-cbc -salt -pbkdf2`
11
+
12
+ Restore example after download:
13
+
14
+ ```bash
15
+ openssl enc -d -aes-256-cbc -pbkdf2 -pass file:/path/to/password.txt -in editmorph_full_20260611_231332.tar.gz.aes | pigz -dc | tar -xf -
16
+ ```