<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/x509, branch OPENBSD_6_1_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_6_1_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_6_1_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2017-02-05T02:33:21+00:00</updated>
<entry>
<title>Kill leak introduced with refactor</title>
<updated>2017-02-05T02:33:21+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-02-05T02:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f71ca67a0db026e4122227bdfb78b501c3959263'/>
<id>urn:sha1:f71ca67a0db026e4122227bdfb78b501c3959263</id>
<content type='text'>
ok jsing@
</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>fix bogus comment</title>
<updated>2017-01-21T01:09:54+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-21T01:09:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d89d1ebb99d29f9fd1375b97b984e7093cf083db'/>
<id>urn:sha1:d89d1ebb99d29f9fd1375b97b984e7093cf083db</id>
<content type='text'>
ok jsing@
</content>
</entry>
<entry>
<title>Make return value of X509_verify_cert be consistent with the error code,</title>
<updated>2017-01-21T01:07:25+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-21T01:07:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ba0fcad847ab1c8a18e417694f580450cb73ce38'/>
<id>urn:sha1:ba0fcad847ab1c8a18e417694f580450cb73ce38</id>
<content type='text'>
with the caveat that we force V_OK when a user provided callback has
us returning success.
ok inoguchi@ jsing@
</content>
</entry>
<entry>
<title>Rework internal_verify, mostly from OpenSSL. so we can progress</title>
<updated>2017-01-20T00:37:40+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-20T00:37:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c3138c510097b9e2e5fa6d7ddbe246a9ad9c517b'/>
<id>urn:sha1:c3138c510097b9e2e5fa6d7ddbe246a9ad9c517b</id>
<content type='text'>
towards cleaning up the V_OK stuff.
ok kinichiro@
</content>
</entry>
<entry>
<title>Add and remove some blank lines, in order to make X509_verify_cert()</title>
<updated>2017-01-07T13:49:07+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2017-01-07T13:49:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=e164832cc18d3c2332a46cbde9d3fc8f2043edeb'/>
<id>urn:sha1:e164832cc18d3c2332a46cbde9d3fc8f2043edeb</id>
<content type='text'>
(slightly) more readable.
</content>
</entry>
<entry>
<title>Revert part of r1.54 as there are at least two situations where we are still</title>
<updated>2017-01-07T06:45:24+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2017-01-07T06:45:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f207076b9d7709285481055787f6336fb6a00d48'/>
<id>urn:sha1:f207076b9d7709285481055787f6336fb6a00d48</id>
<content type='text'>
returning ok == 1, with ctx-&gt;error not being X509_V_OK. Hopefully we can
restore this behaviour once these are ironed out.

Discussed with beck@
</content>
</entry>
<entry>
<title>Add a small bit of belt and suspenders around ERR_V_OK with X509_STORE_ctx</title>
<updated>2017-01-03T05:52:28+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-03T05:52:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0576d53d5e90ceb7245e7ad4eedd3bb13b32a0b8'/>
<id>urn:sha1:0576d53d5e90ceb7245e7ad4eedd3bb13b32a0b8</id>
<content type='text'>
and X509_verify_cert - We at least make it so an an init'ed ctx is not
"valid" until X509_verify_cert has actually been called, And we make it
impossible to return success without having the error set to ERR_V_OK.
ok jsing@
</content>
</entry>
<entry>
<title>bring in boring's internal check_trust function to fix a bug introduced</title>
<updated>2017-01-03T05:34:48+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-03T05:34:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=9c1a1015b0e9cebcce01d2f3fcbf8883aa60fa38'/>
<id>urn:sha1:9c1a1015b0e9cebcce01d2f3fcbf8883aa60fa38</id>
<content type='text'>
when we went to alternate cert chains. this correctly does not clobber
the ctx-&gt;error when using an alt chain.
ok jsing@
</content>
</entry>
<entry>
<title>Expand ASN1_ITEM_rptr macros - no change in generated assembly.</title>
<updated>2016-12-30T15:24:51+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2016-12-30T15:24:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=3d32963b322889e88515bd7a094bff2bf45065d6'/>
<id>urn:sha1:3d32963b322889e88515bd7a094bff2bf45065d6</id>
<content type='text'>
</content>
</entry>
</feed>
