https://git.schokokeks.org/derivepassphrase.git/tree/73fb62ada4ff63a4b89995680a4a048d48ec2d54Recent commits to derivepassphrase.git (73fb62ada4ff63a4b89995680a4a048d48ec2d54)2025-12-27T18:26:50+01:00tag:gitlist.org,2012:commit/73fb62ada4ff63a4b89995680a4a048d48ec2d54Fix recognition of Pageant in the test fixtures2025-12-27T18:26:50+01:00Marco Riccisoftware@the13thletter.info
<pre>When reacting to failures uploading a test key into an agent, both the
agent type `KnownSSHAgent.UNIXPageant` and the type
`KnownSSHAgent.Pageant` should be treated the same. However, the
`ssh_agent_client_with_loaded_test_keys` only treated the former agent
type specially. Now it also treats the latter type the same.
</pre>
tag:gitlist.org,2012:commit/9bbcb557c6818f6950dbcd20cc27fae147572319Unload loaded test keys in the fixture more efficiently2025-12-27T17:33:06+01:00Marco Riccisoftware@the13thletter.info
<pre>Instead of iterating over all test keys and testing whether the agent is
not isolated and the key is a successfully loaded key, first check
whether the agent is isolated or not, *then* iterate over the
successfully loaded key names and extract the relevant test key from the
test key table. The efficiency per operation is similar, but the
previous setup always iterated the whole test key table unconditionally,
whereas the new setup only iterates the successfully loaded key name set
(fewer entries than the test key table), and only conditionally.
</pre>
tag:gitlist.org,2012:commit/f3513835b687058962e571fa6648fbad6e28d1ecDocument the "test key uploading" helper functions2025-12-27T17:19:38+01:00Marco Riccisoftware@the13thletter.info
<pre>Add docstrings to the `_prepare_payload` and `_load_key_optimistically`
helper functions.
Also change the signature of `_load_key_optimistically` to take the test
key structure directly, instead of taking a (dict) key to lookup the
structure. (These types of things become apparent when writing
docstrings, even for otherwise internal functions.)
</pre>
tag:gitlist.org,2012:commit/1ea2ba094e6e877e42a4d3e84c0483a66bbbfecaAuto-format the "test key uploading" fixture and helper functions, again2025-12-27T17:10:07+01:00Marco Riccisoftware@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/71f2f540c1f2e12948c0dd11b8eaef98233d396bConvert the helper function `_load_keys_optimistically` into a per-key function2025-12-27T17:01:22+01:00Marco Riccisoftware@the13thletter.info
<pre>The function is now called `_load_key_optimistically`, and returns a
success indication whether the key was (potentially already) loaded or
not. Also, the private key blob cannot be `None` anymore, so the
function no longer has degenerate cases.
</pre>
tag:gitlist.org,2012:commit/40ecd7a6fd47f1103cd203d437b9ff9b8efd6556Auto-format the "test key uploading" fixture and helper functions2025-12-27T15:15:35+01:00Marco Riccisoftware@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/4bfe78dfbae036695c68fbe80bb060c926a80d1cSplit the "test key loading" fixture function2025-12-27T15:09:33+01:00Marco Riccisoftware@the13thletter.info
<pre>Extract the `_prepare_payload` and the `_load_keys_optimistically`
helper functions from the `ssh_agent_client_with_test_keys_loaded`
fixture function.
The `_load_keys_optimistically` helper function needs further
refactoring into a per-key function, not a per-keyset function; to be
added in a following commit.
</pre>
tag:gitlist.org,2012:commit/b0b10b66acf32597b853b36fd55a048dfde977baPrepare the splitting of the "test key loading" fixture function2025-12-27T14:57:17+01:00Marco Riccisoftware@the13thletter.info
<pre>The `ssh_agent_client_with_test_keys_loaded` fixture function is due to
be split, moving the upload bits and the `prepare_payload` function to
new top-level helper functions. Rename the `prepare_payload` function,
and add parameter definitions so that the extracted functions will make
immediate sense.
</pre>
tag:gitlist.org,2012:commit/5bcd2c39308880309286a2243e3795833817d1a5Add debugging attributes to `ssh_agent.TrailingDataError`2025-12-27T14:43:35+01:00Marco Riccisoftware@the13thletter.info
<pre>The old implementation did not record *which* trailing data we were
seeing, on the grounds that well-behaved SSH agents would not send any
trailing data anyway (i.e., that this error condition was a failsafe).
However, while implementing Windows named pipe support, I observed
Pageant sporadically returning malformed responses that trigger this
error. Without actually recording the trailing data, it is hard to
understand whether this is Pageant's fault (unlikely) or ours (more
likely), and specifically, whether we're implementing the protocol
incorrectly (unlikely), or rather the communication channel (much more
likely). So the `TrailingDataError` class now optionally records the
actual raw response and the trailing data portion that caused the error,
to aid debugging.
</pre>
tag:gitlist.org,2012:commit/240ec594a6804125a8002e8b499531fca6aebc4fReparametrize the `socketprovider.SocketProvider.register` decorator2025-12-26T12:25:39+01:00Marco Riccisoftware@the13thletter.info
<pre>Use parametric types to allow better introspection into decorated
classes.
</pre>