<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-keymgr/src/keystore, branch arti-v1.4.4</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.4</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.4'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-05-30T13:50:30Z</updated>
<entry>
<title>tor-keymgr: BREAKING: Refactor API: Keystore::list</title>
<updated>2025-05-30T13:50:30Z</updated>
<author>
<name>hjrgrn</name>
<email>3874-hjrgrn@gitlab.torproject.org</email>
</author>
<published>2025-05-20T08:28:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a5608979813c4465d5299ffb3bcaaa5892807742'/>
<id>urn:sha1:a5608979813c4465d5299ffb3bcaaa5892807742</id>
<content type='text'>
* Change return type `Result&lt;Vec&lt;(KeyPath, KeystoreItemType)&gt;&gt;` if favor
of `Result&lt;Vec&lt;StdResult&lt;(KeyPath, KeystoreItemType), UnrecognizedEntryError&gt;&gt;&gt;`
</content>
</entry>
<entry>
<title>*: use std::io::Error::other in many places</title>
<updated>2025-05-16T01:46:11Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-05-16T01:46:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=30617ad94bed7d2e4829c10144daf202d3ffd23c'/>
<id>urn:sha1:30617ad94bed7d2e4829c10144daf202d3ffd23c</id>
<content type='text'>
The `IoError::other` function is an easier way to say
`IoError::new(IoErrorKind::Other, ...)`.  It's been around since
1.74, but clippy started warning about the more verbose version in
1.87.
</content>
</entry>
<entry>
<title>tor-keymgr: ephemeral type validation</title>
<updated>2025-04-03T09:37:11Z</updated>
<author>
<name>hashcatHitman</name>
<email>3924-hashcatHitman@gitlab.torproject.org</email>
</author>
<published>2025-04-03T09:37:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8a060a4ce2cdc035fa4244e8dfbbc1661236a712'/>
<id>urn:sha1:8a060a4ce2cdc035fa4244e8dfbbc1661236a712</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-keymgr: BREAKING: Refactor API: Keystore::insert</title>
<updated>2025-04-02T15:40:15Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-04-02T15:40:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f9aa4fb2c635a3fa9efd4917e59e3352ee2ef75b'/>
<id>urn:sha1:f9aa4fb2c635a3fa9efd4917e59e3352ee2ef75b</id>
<content type='text'>
Drop redundant/unused param item_type: &amp;KeystoreItemType from
keystore::Keystore::insert. Method now uses param
key: &amp;dyn EncodableItem to obtain a KeystoreItemType
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::ephemeral::insert: Drop item type validation</title>
<updated>2025-04-01T23:15:39Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-30T21:25:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7b1aebef05fb9460ac0b07927326b1180f99df36'/>
<id>urn:sha1:7b1aebef05fb9460ac0b07927326b1180f99df36</id>
<content type='text'>
Motivation: Param _item_type is redundant since prev commit. No point
in checking if key_data's item type and _item_type are the same, we
do things as per key_data's item type from now on.

- Removes a test for item type validation.
</content>
</entry>
<entry>
<title>tor-keymgr: Fix TODO: Refactor API: Keystore::insert</title>
<updated>2025-04-01T23:15:39Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-30T21:21:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=961f8a6aad4208349f8bad0c9da33c759f0c63cf'/>
<id>urn:sha1:961f8a6aad4208349f8bad0c9da33c759f0c63cf</id>
<content type='text'>
Makes param item_type redundant. Renames item_type -&gt; _item_type.
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti::ssh: Fix typo; simplify comments.</title>
<updated>2025-03-27T11:44:24Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-27T11:44:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=34c6bf5a81e5432ff397667ad848011cda0371a2'/>
<id>urn:sha1:34c6bf5a81e5432ff397667ad848011cda0371a2</id>
<content type='text'>
Closes #1455
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti: Rework tests: ssh-keygen interop</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T18:05:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7429bcb3811db293639bb951f875750cac655861'/>
<id>urn:sha1:7429bcb3811db293639bb951f875750cac655861</id>
<content type='text'>
Closes #1455 [PATCH 4(v3)/4]
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti::ssh: Rework tests: ssh-keygen interop</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T18:03:56Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bf6123604e584d6d2308eb352f20ac92d985136c'/>
<id>urn:sha1:bf6123604e584d6d2308eb352f20ac92d985136c</id>
<content type='text'>
Part of #1455 [PATCH 3(v3)/4]
</content>
</entry>
<entry>
<title>tor-keymgr: test_utils: TestSpecifier::path_prefix: Drop method</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T17:44:57Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fbfeede629f1b1d326befc77e9cabc8575e86db5'/>
<id>urn:sha1:fbfeede629f1b1d326befc77e9cabc8575e86db5</id>
<content type='text'>
Part of #1455
</content>
</entry>
</feed>
