<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/man/ASN1_TIME_set.3, branch OPENBSD_7_9_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_7_9_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_7_9_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2025-06-08T22:40:31+00:00</updated>
<entry>
<title>.Lb libcrypto ; OK tb@</title>
<updated>2025-06-08T22:40:31+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2025-06-08T22:40:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8be86af02fed1bda350c8dd14ee064cb66e3b0f5'/>
<id>urn:sha1:8be86af02fed1bda350c8dd14ee064cb66e3b0f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove ASN1_time_parse documentation</title>
<updated>2024-03-05T18:30:40+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2024-03-05T18:30:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=31900a38526d681aa1966cd7ce6c338362b6378c'/>
<id>urn:sha1:31900a38526d681aa1966cd7ce6c338362b6378c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update ASN1_TIME_set(3)</title>
<updated>2024-02-18T16:30:17+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2024-02-18T16:30:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c92f6f2a87ee22a2ea45d39b1895cd3daa691a36'/>
<id>urn:sha1:c92f6f2a87ee22a2ea45d39b1895cd3daa691a36</id>
<content type='text'>
Document OPENSSL_{posix_to_tm,tm_to_posix}() and fix the documentation of
OPENSSL_{gmtime,timegm}().

ok jsing
</content>
</entry>
<entry>
<title>Minimal fix to unbreak OPENSSL_{gmtime,timegm}(3)</title>
<updated>2023-11-16T14:20:49+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2023-11-16T14:20:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=9f5863803363982b8f49e4bd982c088adba1e72d'/>
<id>urn:sha1:9f5863803363982b8f49e4bd982c088adba1e72d</id>
<content type='text'>
I was told not to look since it will magically get fixed. Fine. I'd still
have expected a minimal amount of care so that the manpage isn't totally
dysfunctional and missing text in the right places. Sigh.
</content>
</entry>
<entry>
<title>Prepare to expose OPENSSL_gmtime and OPENSSL_timegm as public</title>
<updated>2023-11-13T12:46:07+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2023-11-13T12:46:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d0232ec89756b3b83a7ebd92b315b65415b5f0e4'/>
<id>urn:sha1:d0232ec89756b3b83a7ebd92b315b65415b5f0e4</id>
<content type='text'>
This matches when BoringSSL has done, and allows for getting
rid of the dependency on system timegm() and gmtime() in libtls.
which will make life easier for portable, and remove our
dependency on the potentially very slow system versions.

ok tb@ - tb will handle the minor bump bits and expose
on the next minor bump
CVS :----------------------------------------------------------------------
</content>
</entry>
<entry>
<title>Various improvements; joint work with beck@:</title>
<updated>2022-11-13T22:11:44+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2022-11-13T22:11:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=13dedf69f20a1aa296476520adf2a076aaaa01eb'/>
<id>urn:sha1:13dedf69f20a1aa296476520adf2a076aaaa01eb</id>
<content type='text'>
1. Explain up front what "ASN1_TIME" is (suggested by beck@, wording by me).
2. For opaque structs, use the generic term "object",
like we already do it in many other LibreSSL manual pages.
3. Drop some redundant phrases.
4. Improve the EXAMPLES section (by beck@, with fixes by me).
6. Add a STANDARDS section.
...and some other minor polishing.
OK beck@
</content>
</entry>
<entry>
<title>In asn1.h rev. 1.65, beck@ provided ASN1_TIME_set_string_X509(3),</title>
<updated>2022-11-10T17:44:05+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2022-11-10T17:44:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=7388bd69e47d02bbc0677a0e84c7c4de0823c6ce'/>
<id>urn:sha1:7388bd69e47d02bbc0677a0e84c7c4de0823c6ce</id>
<content type='text'>
ASN1_TIME_normalize(3), ASN1_TIME_to_tm(3), ASN1_TIME_cmp_time_t(3),
and ASN1_TIME_compare(3).
Merge documentation from the OpenSSL 1.1.1 branch, which is still
under a free license, with tweaks by me in several respects to match
our implementation, and also using some feedback from beck@.
OK beck@.
</content>
</entry>
<entry>
<title>man pages: add missing commas between subordinate and main clauses</title>
<updated>2022-03-31T17:27:26+00:00</updated>
<author>
<name>naddy</name>
<email></email>
</author>
<published>2022-03-31T17:27:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=3d8be07546f5ec331a0f851b0ea88212376ebb95'/>
<id>urn:sha1:3d8be07546f5ec331a0f851b0ea88212376ebb95</id>
<content type='text'>
jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.

ok jmc@
</content>
</entry>
<entry>
<title>In asn1.h rev. 1.55 and asn1/a_time.c rev. 1.28, beck@</title>
<updated>2021-11-21T17:35:53+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2021-11-21T17:35:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d61f2ca6c8b53fe9aa1967b90888ce749a75c3ab'/>
<id>urn:sha1:d61f2ca6c8b53fe9aa1967b90888ce749a75c3ab</id>
<content type='text'>
provided ASN1_TIME_diff(3).  Merge the documentation from
the OpenSSL 1.1.1 branch, which is still under a free license.
</content>
</entry>
<entry>
<title>Tree structure for manual pages: crypto(3) links to 33 function</title>
<updated>2019-06-06T01:06:59+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2019-06-06T01:06:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=580f04977d3a77664477818e7264e008d1ba5843'/>
<id>urn:sha1:580f04977d3a77664477818e7264e008d1ba5843</id>
<content type='text'>
group pages, and these link on to all their second-level subpages.
Only a handful of second-level pages have third-level subpages.
So all crypto pages can now be reached from the www.libressl.org
frontpage via at most four clicks, in most cases three clicks.
Also link back from leaf pages to their respective group pages
and add a couple of additional links between related pages.
Triggered by a question from deraadt@.
OK jmc@ tb@
</content>
</entry>
</feed>
