<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-cert, branch arti-v1.9.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.9.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.9.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-01-12T12:32:35Z</updated>
<entry>
<title>cargo: Update `arti-*` and `tor-*` to `0.38.0`</title>
<updated>2026-01-12T12:32:35Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-01-12T12:32:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=230b0201ea730a633e55c2781611a52c5ec73c28'/>
<id>urn:sha1:230b0201ea730a633e55c2781611a52c5ec73c28</id>
<content type='text'>
Done using the following:
```bash
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
	cargo set-version -p $crate 0.38.0
done
```
</content>
</entry>
<entry>
<title>Remove unnecessary `doc(cfg(...))` attributes</title>
<updated>2025-12-05T02:40:50Z</updated>
<author>
<name>Neel Chauhan</name>
<email>neel@neelc.org</email>
</author>
<published>2025-11-01T23:25:20Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=26b40cb08b6b715ee80e2b9084810e07512a85c6'/>
<id>urn:sha1:26b40cb08b6b715ee80e2b9084810e07512a85c6</id>
<content type='text'>
Fixes part of #2193.

(Edits from nickm: I selected the cases here that I could verify
were correct from immediate context.)

Edited-by: Nick Mathewson &lt;nickm@torproject.org&gt;
</content>
</entry>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.37.0.</title>
<updated>2025-12-02T11:07:59Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-12-02T10:58:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e7d740eda02e05dd53574b6753cc4b45ab160b58'/>
<id>urn:sha1:e7d740eda02e05dd53574b6753cc4b45ab160b58</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.37.0
done
</content>
</entry>
<entry>
<title>tor-cert: x509 requires tor-llcrypto/rng-compat.</title>
<updated>2025-11-12T15:07:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-23T13:26:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=93bef89bda3f6dbe983ec05febcf5998e889bc09'/>
<id>urn:sha1:93bef89bda3f6dbe983ec05febcf5998e889bc09</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename TlsCertifiedKey to TlsKeyAndCert.</title>
<updated>2025-11-12T15:07:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-23T12:09:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8a28cfa4e5b8fc0631c8802a745ffe384e1290bf'/>
<id>urn:sha1:8a28cfa4e5b8fc0631c8802a745ffe384e1290bf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>x509: Correct single instance of misnamed cert</title>
<updated>2025-11-12T15:07:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-09T15:33:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=21428be45117c9cce59ea59eda57b48afde06c2e'/>
<id>urn:sha1:21428be45117c9cce59ea59eda57b48afde06c2e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>x509: Support generating the keys and certs that relays need.</title>
<updated>2025-11-12T15:07:34Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-09T14:41:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=624f0c17eaae16ecfb8dd4c957a49a9bff627a14'/>
<id>urn:sha1:624f0c17eaae16ecfb8dd4c957a49a9bff627a14</id>
<content type='text'>
Although we never need to actually check the signature on the other
party's x509 certificate, A relay does need a certificate and a
private key in order to be a proper TLS server.

In this function, I've added support for making an ersatz P-256
certificate certifying a P-256 key.  See the code for info about the
rationale here.  (Tor supports this, since it doesn't look at the
key at all: only the TLS layer cares about that.)

native_tls and rustls expect to get their keys and certs in
different forms, so this code provides them.

(Note that we don't expect to use native_tls with relays in the
first place, but it might be useful for lower-level interop
testing.)

Closes #2205.
</content>
</entry>
<entry>
<title>x509: Extract serial-number generation into its own function.</title>
<updated>2025-11-12T15:06:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-09T13:23:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=207471a0230598da190a59e54a16390e6231ac79'/>
<id>urn:sha1:207471a0230598da190a59e54a16390e6231ac79</id>
<content type='text'>
</content>
</entry>
<entry>
<title>x509: Fix an unfinished comment.</title>
<updated>2025-11-12T15:06:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-09T13:15:50Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7532349b28f2e1ef4857343842ee1eaaea7cfe14'/>
<id>urn:sha1:7532349b28f2e1ef4857343842ee1eaaea7cfe14</id>
<content type='text'>
</content>
</entry>
<entry>
<title>x509: refactor lifetime calculation</title>
<updated>2025-11-12T15:06:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-09T13:13:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f6122a5dd8f626866a0b18d38b81a4469caeb483'/>
<id>urn:sha1:f6122a5dd8f626866a0b18d38b81a4469caeb483</id>
<content type='text'>
This doesn't give precisely the same results as before for leap
years, but that should be okay.
</content>
</entry>
</feed>
