https://git.schokokeks.org/derivepassphrase.git/tree/9a6617ef05d898f69115e45bccf53e78e8b78bbcRecent commits to derivepassphrase.git (9a6617ef05d898f69115e45bccf53e78e8b78bbc)2026-02-08T21:25:06+01:00tag:gitlist.org,2012:commit/9a6617ef05d898f69115e45bccf53e78e8b78bbcUpdate the copyright year to 20262026-02-08T21:25:06+01:00Marco Riccisoftware@the13thletter.info
<pre>Also fix one instance where the declared license identifier still was
the MIT license, making it unclear whether this file was licensed under
a different license than the rest. (No, it was merely a typo.)
</pre>
tag:gitlist.org,2012:commit/8a0b21fee827207b46da6fceb3c98d37b88a08baFix a longstanding typo in the Markdown manpage examples2026-02-08T21:01:20+01:00Marco Riccisoftware@the13thletter.info
<pre>Apparently, this is a copy-and-paste error from the PDF rendering of the
manpage when it was originally converted to Markdown: while the PDF
*looked* correct, the text layer was not, and so the pasted text was
also out-of-order.
</pre>
tag:gitlist.org,2012:commit/46c906e53a432ad1eaaef5fe6ba1d9f7e6e12f1eUpdate the manpages with respect to SSH agents2026-02-08T19:38:24+01:00Marco Riccisoftware@the13thletter.info
<pre>Add a section on SSH agent socket providers, and documentation for the
new `--ssh-agent-socket-provider` option and the new "The SSH agent
socket provider %s is not in derivepassphrase's provider registry."
error message. Also update the section on SSH key suitability, and
remove the entry on Windows incompatibility from the Bugs section.
</pre>
tag:gitlist.org,2012:commit/a19b8bbe85e9fba002b1e1364f6cc9aeb64e5969Fix minor formatting errors, linting errors, and typos2026-02-08T16:10:06+01:00Marco Riccisoftware@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/369ca71eaa5b58f91a1b31e6e0bbecd87db4a488Add tests for explicit SSH agent socket provider selection2026-02-08T16:02:18+01:00Marco Riccisoftware@the13thletter.info
<pre>Extend the vault CLI tests for basic SSH key usage to also cover the SSH
agent socket provider choice case. We split up the monolithic `_test`
helper function into separate `_setup_environment` and `_check_result`
functions, so that we can share common setup code (including fixtures
and parametrizations), but use different result testing code. We also
extend the `_setup_environment` code to handle main user configuration
mocking and SSH agent socket provider registry mocking as well, even if
the basic key tests don't use this functionality.
</pre>
tag:gitlist.org,2012:commit/b47aeba92dcb366450841a5f480f0d47d0cd4785Error out correctly when an invalid SSH agent socket provider is specified2026-02-08T13:40:06+01:00Marco Riccisoftware@the13thletter.info
<pre>Issue the correct error message when an SSH agent socket provider is
specified via command-line options or via user configuration, but the
socket provider does not appear in the registry.
Previously, due to a technicality, this would be treated the same as the
`SSH_AUTH_SOCK` environment variable missing, and would issue the same
error message. This is, of course, blatantly false, and has now been
corrected.
</pre>
tag:gitlist.org,2012:commit/04d675f8ef255a5e68589a6a132490a424595216Support specifying the SSH agent socket provider via CLI or configuration2026-02-08T13:00:41+01:00Marco Riccisoftware@the13thletter.info
<pre>Add a designated entry `vault.ssh-agent-socket-provider` to the
`derivepassphrase` main configuration and the new option
`--ssh-agent-socket-provider` to the `derivepassphrase vault`
command-line interface. These both specify a specific SSH agent socket
provider to use, instead of the built-in default provider list. The
command-line option has precedence over the user configuration.
In complementary work, streamline the construction of SSH agent client
contexts and the querying of configuration files in `derivepassphrase
vault`'s main program: provide a `get_configured_connection_hint` for
the former, and harmonize function signatures and call responsibilities
for the latter.
</pre>
tag:gitlist.org,2012:commit/1480df53a6ad1f89fb2a570eb7d38f5e10a06e03Document platform-specific coverage exclusion markers2026-02-01T20:51:53+01:00Marco Riccisoftware@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/9207fef5eb8663a3246f18239c9b648fbdd3a090Work around non-reentrant SSH agent sockets/clients2026-02-01T20:38:39+01:00Marco Riccisoftware@the13thletter.info
<pre>Mark some tests as needing the ability to construct a second SSH agent
client (on the same socket address) while another one is still
connected. This works with most agents, except `gpg-agent` on The
Annoying OS when masquerading as OpenSSH's `ssh-agent`. Presumably,
`gpg-agent` handles the requests with a single thread, non-multiplexed,
and so blocks all other agent clients from progressing. The symptoms
are blocking during the connect call, then failing with "socket address
not found" immediately once the other client closes its connection.
We address the affected tests by monkeypatching the
`ssh_agent.SSHAgentClient.ensure_agent_subcontext` context manager – the
main way `derivepassphrase` internally interacts with the SSH agent – to
return a singleton agent: the agent provided to the test function (via
a fixture). We implement this as a machinery function to set up the
environment explicitly, because this functionality hard to set up
usefully as a test fixture: it interferes with testing SSH agent client
constructor failures, and *those* are sometimes implemented as single
`pytest.param`s of a common test function, but the test function cannot
dynamically adapt the set of applicable fixtures to the specific
parametrization.
While specifically designed for use with `gpg-agent` on The Annoying OS,
the interface is general in nature, and can be used with any declared
SSH agent (except the fake agents). Since this internally works
similarly to the "permitted SSH agents" feature of the test suite, we
generalize the latter slightly to allow implementing the former.
</pre>
tag:gitlist.org,2012:commit/9d4a186f43ffb9dba80980ed38febd3859ff5b78Add more coverage exclusion, with commentary2026-01-28T20:48:27+01:00Marco Riccisoftware@the13thletter.info
<pre></pre>