<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gibheer/pki, branch master</title>
<subtitle>pki - A small library to generate key material and certificates in Go.
</subtitle>
<id>http://git.zero-knowledge.org/gibheer/pki/atom?h=master</id>
<link rel='self' href='http://git.zero-knowledge.org/gibheer/pki/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/'/>
<updated>2023-01-10T13:39:33Z</updated>
<entry>
<title>fix ed25519 key function</title>
<updated>2023-01-10T13:39:33Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2023-01-10T16:38:46Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=0380f7f91c831af18e37414afcdf30935b4b4ee9'/>
<id>urn:sha1:0380f7f91c831af18e37414afcdf30935b4b4ee9</id>
<content type='text'>
The private key for ed25519 never returned crypto.PrivateKey. This
caused the generation of certificates to not work and may also have
resulted in other issues.
</content>
</entry>
<entry>
<title>run go mod tidy</title>
<updated>2022-08-15T20:38:10Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2022-08-15T20:38:10Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=d34a8ab26ec72ea5ac1d1b2cd39ea736eb5af014'/>
<id>urn:sha1:d34a8ab26ec72ea5ac1d1b2cd39ea736eb5af014</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add go mod files</title>
<updated>2022-08-15T20:36:25Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2022-08-15T20:36:25Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=f4f6429024479ae75393a9fbdbee320460bcbd05'/>
<id>urn:sha1:f4f6429024479ae75393a9fbdbee320460bcbd05</id>
<content type='text'>
The source of this repository is now git.zero-knowledge.org/gibheer/pki
</content>
</entry>
<entry>
<title>make the test succeed</title>
<updated>2022-08-15T20:36:04Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2022-08-15T20:36:04Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=8726fcfa3a3e1a7d00c37b0a691bd1f7e53b490b'/>
<id>urn:sha1:8726fcfa3a3e1a7d00c37b0a691bd1f7e53b490b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix upstream source of ed25519</title>
<updated>2022-08-15T20:35:00Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2022-08-15T20:35:00Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=9fcfb1009c2088e0506e8fc5239a5a5d15379378'/>
<id>urn:sha1:9fcfb1009c2088e0506e8fc5239a5a5d15379378</id>
<content type='text'>
Back when this file was created, ed25519 wasn't available as it is
today, 8 years later.
Now ed25519 is implemented in go directly, so use their work instead of
an upstream project that is now gone.
</content>
</entry>
<entry>
<title>Add ToPem() to public keys</title>
<updated>2017-05-12T20:19:25Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2017-05-12T20:19:25Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=e95929ed2641bf6548aada92d9d17a3441f19e2b'/>
<id>urn:sha1:e95929ed2641bf6548aada92d9d17a3441f19e2b</id>
<content type='text'>
This was missing before from all public keys.
</content>
</entry>
<entry>
<title>add proper pem interface</title>
<updated>2017-05-12T13:27:44Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2017-05-12T13:27:44Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=b6c44317f540dac8763e720767b0e73940a0b6c5'/>
<id>urn:sha1:b6c44317f540dac8763e720767b0e73940a0b6c5</id>
<content type='text'>
This should finally resolve the completely broken and wrong API to get a
pem representation of a resource.
</content>
</entry>
<entry>
<title>fix result type</title>
<updated>2016-09-29T19:52:25Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2016-09-29T19:52:25Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=fd88bca2872e589b451cde3767dbc59d82bd1c83'/>
<id>urn:sha1:fd88bca2872e589b451cde3767dbc59d82bd1c83</id>
<content type='text'>
The returned type must be io.WriterTo to make it fit the Pemmer
interface.
</content>
</entry>
<entry>
<title>move certificate and certificate request to pemmer</title>
<updated>2016-09-18T15:39:29Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer+git@zero-knowledge.org</email>
</author>
<published>2016-09-18T15:39:29Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=2ad03c8f80e048138581229bab76c481292847b4'/>
<id>urn:sha1:2ad03c8f80e048138581229bab76c481292847b4</id>
<content type='text'>
This makes them use the Pemmer interface and therefore doesn't require
any weird control code to handle these two special cases.
</content>
</entry>
<entry>
<title>add ed25519 tests</title>
<updated>2015-07-12T15:48:37Z</updated>
<author>
<name>Gibheer</name>
<email>gibheer@gmail.com</email>
</author>
<published>2015-07-12T15:48:37Z</published>
<link rel='alternate' type='text/html' href='http://git.zero-knowledge.org/gibheer/pki/commit/?id=f004403281635b9c86f7c0289f5544be19e389a5'/>
<id>urn:sha1:f004403281635b9c86f7c0289f5544be19e389a5</id>
<content type='text'>
This adds the tests for the ed25519 keys.
</content>
</entry>
</feed>
