aboutsummaryrefslogtreecommitdiff
path: root/tests/shadow/shadow.data.template/hosts
Commit message (Collapse)AuthorAgeFilesLines
* tor-keymgr: Fix typo in key names.Gabriela Moldovan2023-09-121-0/+0
| | | | The secret keys are prefixed with `KS`, not `KP`.
* tor-keymgr: Remove redundant _private suffix from key extension.Gabriela Moldovan2023-09-121-0/+0
| | | | The privateness of the keys is encoded in their name.
* keymgr: Do not expect x25519 keys to be stored as ed25519 ssh keys.Gabriela Moldovan2023-08-162-6/+6
| | | | | | | | | | | | | | | | | | | | | | Previously, the Arti key store would store x25519 secret keys as ed25519 OpenSSH keys, which it would convert to x25519 upon loading (using the conversion function added in !1297 (merged)). This approach isn't good enough though: most people will probably want to bring their existing x25519 keys, and in order to store those in OpenSSH format, we'd need convert them to ed25519, which is impossible (because the secret part of an x25519 key contains a SHA512'd secret, whereas the corresponding, "un-expanded", ed25519 secret key contains the secret itself rather than the SHA). Now that `ssh-key` has support for ssh keys with [custom algorithm names], we can store x25519 in OpenSSH format directly. This commit changes the storage format used by the keymgr for x25519 client auth keys (from ed25519-ssh to our own custom key type with an algorithm name of `"[email protected]"`). Closes #936 [custom algorithm names]: https://github.com/RustCrypto/SSH/pull/136
* CI: Add client auth integration test.Gabriela Moldovan2023-07-129-0/+15
|
* articlient-onion: don't filter onion addressesJim Newsome2023-07-031-0/+1
|
* Dedupe arti configs and match TestingTorNetworks HS configJim Newsome2023-07-037-66/+4
|
* shadow test: enable arti's `log_sensitive_information` optionJim Newsome2023-07-033-0/+9
|
* shadow test: add 2 more relaysJim Newsome2023-07-0320-0/+8
| | | | | Without this, the onion client was failing to find a guard. We recently made this change in shadow's "tor minimal" test as well.
* shadow test: add and validate arti onion clientJim Newsome2023-07-031-0/+17
|
* shadow test: add onion serverJim Newsome2023-07-035-0/+4
|
* shadow ci: bump shadowJim Newsome2023-05-221-0/+0
|
* add vanila bridge to shadow simtrinity-1686a2022-11-307-0/+28
|
* Create a shadow-based integration testJim Newsome2022-10-0538-0/+301
Fixes https://gitlab.torproject.org/tpo/core/arti/-/issues/174