<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/ocsp/ocsp_cl.c, branch OPENBSD_6_8_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_6_8_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_6_8_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2018-11-25T19:48:43+00:00</updated>
<entry>
<title>spelling; from miod</title>
<updated>2018-11-25T19:48:43+00:00</updated>
<author>
<name>jmc</name>
<email></email>
</author>
<published>2018-11-25T19:48:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8fcaf3cb5e1976aaefb39c150b74c79abe2337bf'/>
<id>urn:sha1:8fcaf3cb5e1976aaefb39c150b74c79abe2337bf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Provide OCSP_SINGLERESP_get0_id().</title>
<updated>2018-03-17T14:44:34+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-03-17T14:44:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=bc672f529368905a937bd4d1ace5d0a63ebd6632'/>
<id>urn:sha1:bc672f529368905a937bd4d1ace5d0a63ebd6632</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Send the function codes from the error functions to the bit bucket,</title>
<updated>2017-01-29T17:49:23+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-29T17:49:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d1f47bd292f36094480caa49ada36b99a69c59b0'/>
<id>urn:sha1:d1f47bd292f36094480caa49ada36b99a69c59b0</id>
<content type='text'>
as was done earlier in libssl. Thanks inoguchi@ for noticing
libssl had more reacharounds into this.
ok jsing@ inoguchi@
</content>
</entry>
<entry>
<title>Expand ASN1_ITEM_rptr macros - no change in generated assembly.</title>
<updated>2016-12-30T15:38:13+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2016-12-30T15:38:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa'/>
<id>urn:sha1:d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make public ASN1_time_parse and ASN1_time_tm_cmp to replace former hidden</title>
<updated>2016-11-04T18:07:24+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2016-11-04T18:07:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8d79d8e301e0ee5853d7b53fd588b3bace50f5b0'/>
<id>urn:sha1:8d79d8e301e0ee5853d7b53fd588b3bace50f5b0</id>
<content type='text'>
functions.. document with a man page.
bump majors on libtls, libssl, libcrypto
ok jsing@ guenther@
</content>
</entry>
<entry>
<title>Clean up OCSP_check_validity() a bit more.</title>
<updated>2016-07-16T16:14:28+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2016-07-16T16:14:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8109af5f2daf46b062aa3ffda9db6ff7889f818f'/>
<id>urn:sha1:8109af5f2daf46b062aa3ffda9db6ff7889f818f</id>
<content type='text'>
- Return on first failure rather than continuing.
- Don't compare times by comparing strings that possibly were not parsable as a time.
ok deraadt@
</content>
</entry>
<entry>
<title>remove unneeded duplicate call - spotted by jsing@</title>
<updated>2016-07-05T03:24:38+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2016-07-05T03:24:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=218d5ab4d242d1552eebc254412593a7e10d1505'/>
<id>urn:sha1:218d5ab4d242d1552eebc254412593a7e10d1505</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix the ocsp code to actually check for errors when comparing time values</title>
<updated>2016-06-25T15:38:44+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2016-06-25T15:38:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1f2ce7f699960512a4fcf3ed64c452a986dbc6cc'/>
<id>urn:sha1:1f2ce7f699960512a4fcf3ed64c452a986dbc6cc</id>
<content type='text'>
which was not being done due to a lack of checking of the return code for
X509_cmp_time.  Ensure that we only compare GERNERALIZEDTIME values because
this is what is specified by RFC6960.

Issue reported, and fix provided by Kazuki Yamaguchi &lt;k@rhe.jp&gt;
ok bcook@
</content>
</entry>
<entry>
<title>None of these need to include &lt;openssl/rand.h&gt;</title>
<updated>2014-10-18T17:20:40+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-10-18T17:20:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0bad55f54f7132a386746f23ba4f2d106d115563'/>
<id>urn:sha1:0bad55f54f7132a386746f23ba4f2d106d115563</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Only import cryptlib.h in the four source files that actually need it.</title>
<updated>2014-07-11T08:44:49+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-07-11T08:44:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=74e2c009c83ad374bd6acdcfc376a384e25ab007'/>
<id>urn:sha1:74e2c009c83ad374bd6acdcfc376a384e25ab007</id>
<content type='text'>
Remove the openssl public includes from cryptlib.h and add a small number
of includes into the source files that actually need them. While here,
also sort/group/tidy the includes.

ok beck@ miod@
</content>
</entry>
</feed>
