https://git.schokokeks.org/derivepassphrase.git/tree/6eab62ca9f46c2caf2172c6558e26f7cef8f02d5Recent commits to derivepassphrase.git (6eab62ca9f46c2caf2172c6558e26f7cef8f02d5)2024-06-08T19:07:53+02:00tag:gitlist.org,2012:commit/6eab62ca9f46c2caf2172c6558e26f7cef8f02d5Remove __about__.py files, use __init__.py instead2024-06-08T19:07:53+02:00Marco Riccim@the13thletter.info
<pre>Apparently, this is a `hatch` convention/tradeoff, but one that doesn't
appear sensible to a project like this.
On that note, since we're starting with a clear target API in mind,
start directly at release 0.1.0 instead of the `hatch` default 0.0.1.
</pre>
tag:gitlist.org,2012:commit/85fcc667bbe6a3efb47e11c46a67c959d2419e86Exclude known "emergency exits" from coverage reporting2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre>These "emergency exits" are code paths rooted in defensive programming
(of both code and of tests), and are not intended to be reached in
practice.
</pre>
tag:gitlist.org,2012:commit/9d27d86c9b17d6ee74682f9116b1c714dcd6af4cAdd coverage testing2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/2a0045341f70a0730d5088d301a143d089af206aOverhaul dependency and environment handling in pyproject.toml2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/a6d65dffb25ef03bfb5da88b439ccf9f32f14a23Add common globals to CLI module2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/c92d27bb9a3564743e463c28be13261ef48507dcAdd example for `Vault.phrase_from_signature`2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre>Though written in doctest format, the test itself is skipped because it
relies on a running SSH agent. Such external setup is better suited to
an actual unit test suite.
</pre>
tag:gitlist.org,2012:commit/51155a114a8eae81a0306fb4f266db4568683c90Recognize ssh-ed448 keys as deterministic2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/a4df8dddcd5458e9fab8d41a3a3531daf88772c7Fix documentation link to `sequin.Sequin`2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/1e5d605177a2f2a4441c99ca1515efaa55449697Fix character set subtraction logic2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre>Use a static method, and treat both the original character set and the
subtracted character set as sets (i.e. no repetitions allowed).
</pre>
tag:gitlist.org,2012:commit/407bbddff031476549ae018bbe5de566a3b1f738Fix repeated character detection logic in passphrase generation2024-06-08T19:06:56+02:00Marco Riccim@the13thletter.info
<pre>The prototype implementation is based off a JavaScript program, and is
clumsy to read and hard to verify if translated directly to Python. (It
also interacts badly with type checking.) Rewrite the check in
a pythonic manner, from scratch, that is much easier to verify.
</pre>