exgenesis commited on
Commit
5dd2224
·
verified ·
1 Parent(s): 8e3bb03

Add encrypted Switchboard Bench transfer snapshot

Browse files
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Switchboard Bench Encrypted Transfer
3
+ tags:
4
+ - encrypted-archive
5
+ - benchmark
6
+ - agent-trajectories
7
+ ---
8
+
9
+ # Switchboard Bench encrypted transfer
10
+
11
+ This repository is a transport surface, not a public dataset release. It
12
+ contains only an encrypted snapshot of the private Switchboard Bench research
13
+ archive plus integrity metadata. The plaintext dataset and its decryption
14
+ passphrase are not stored in this repository.
15
+
16
+ The intended recipient should obtain the passphrase through a separately
17
+ authenticated channel. Anyone without that passphrase can download the
18
+ ciphertext but cannot inspect the packaged tasks, trajectories, analyses, or
19
+ labels.
20
+
21
+ ## Download and verify
22
+
23
+ ```bash
24
+ uvx --from huggingface_hub hf download \
25
+ exgenesis/switchboard-bench-transfer \
26
+ switchboard-bench-private-20260806.tar.gz.gpg \
27
+ switchboard-bench-private-20260806.tar.gz.gpg.sha256 \
28
+ transfer-manifest.json \
29
+ --repo-type dataset \
30
+ --local-dir .
31
+
32
+ shasum -a 256 -c switchboard-bench-private-20260806.tar.gz.gpg.sha256
33
+ ```
34
+
35
+ Compare the reported SHA-256 with the value sent through the separate secure
36
+ channel as well as `transfer-manifest.json`.
37
+
38
+ ## Decrypt and extract
39
+
40
+ Install GnuPG, then run:
41
+
42
+ ```bash
43
+ gpg --decrypt switchboard-bench-private-20260806.tar.gz.gpg |
44
+ tar -xzf -
45
+ ```
46
+
47
+ GnuPG will prompt for the passphrase. Successful extraction creates
48
+ `switchboard-bench-private-20260806/`, whose own README, data dictionary,
49
+ package manifest, per-file checksums, and validation report document the
50
+ contents.
51
+
52
+ ## Security boundary
53
+
54
+ The repository name, archive size, upload time, checksum, and ciphertext are
55
+ public. Confidentiality depends on keeping the passphrase private. If the
56
+ passphrase is disclosed later, previously downloaded copies can also be
57
+ decrypted; deleting this repository cannot revoke those copies.
switchboard-bench-private-20260806.tar.gz.gpg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:518b8c206c0cedb4ff1d15298a60171d9903ec0789545935cbaa521134355e09
3
+ size 2744004001
switchboard-bench-private-20260806.tar.gz.gpg.sha256 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33c596781d8907f625e429b6dd9343ab89e6c3d453c5a60968206c80330d185c
3
+ size 112
transfer-manifest.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "created_at_utc": "2026-08-08T16:12:20Z",
3
+ "source": {
4
+ "directory": "switchboard-bench-private-20260806",
5
+ "regular_files": 52594,
6
+ "logical_bytes": 8382114909,
7
+ "validation_sha256": "7eccb555345dffb6c467bbf41d5260356e8b3ef5644921deee2a84f0369e2b39"
8
+ },
9
+ "artifact": {
10
+ "path": "switchboard-bench-private-20260806.tar.gz.gpg",
11
+ "bytes": 2744004001,
12
+ "sha256": "518b8c206c0cedb4ff1d15298a60171d9903ec0789545935cbaa521134355e09",
13
+ "format": "gzip-compressed POSIX tar encrypted with GnuPG symmetric AES-256"
14
+ },
15
+ "verification": {
16
+ "source_validation_passed": true,
17
+ "ciphertext_checksum_passed": true,
18
+ "decrypt_and_tar_listing_passed": true
19
+ },
20
+ "key_handling": {
21
+ "local_store": "macOS Keychain",
22
+ "service": "switchboard-bench-transfer-20260808",
23
+ "embedded_in_artifact_or_repository": false
24
+ }
25
+ }