<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/hash, branch php-7.1.2</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Merge branch 'PHP-7.0' into PHP-7.1</title>
<updated>2017-01-30T17:02:42+00:00</updated>
<author>
<name>Sara Golemon</name>
<email>pollita@php.net</email>
</author>
<published>2017-01-30T17:02:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3475c0c03585463849e1d14c7ada22bee79eca5b'/>
<id>3475c0c03585463849e1d14c7ada22bee79eca5b</id>
<content type='text'>
* PHP-7.0:
  Securely zero the hash context key
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.0:
  Securely zero the hash context key
</pre>
</div>
</content>
</entry>
<entry>
<title>Securely zero the hash context key</title>
<updated>2017-01-30T16:57:17+00:00</updated>
<author>
<name>Sara Golemon</name>
<email>pollita@php.net</email>
</author>
<published>2017-01-30T16:57:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=bf0f53270f3deaf53b887fbd90971d9789dc9311'/>
<id>bf0f53270f3deaf53b887fbd90971d9789dc9311</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #73961 environmental build dependency in hash sha3 source</title>
<updated>2017-01-21T07:45:28+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2017-01-21T07:45:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1ff27053f9ffc7c68cf71b6cfb072583e2e7a610'/>
<id>1ff27053f9ffc7c68cf71b6cfb072583e2e7a610</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add hash_hkdf()</title>
<updated>2017-01-14T12:28:21+00:00</updated>
<author>
<name>Andrey Andreev</name>
<email>narf@devilix.net</email>
</author>
<published>2017-01-11T19:54:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4bf7ef08061720586cb0a2f410720e26719d97f3'/>
<id>4bf7ef08061720586cb0a2f410720e26719d97f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright headers to 2017</title>
<updated>2017-01-04T17:23:42+00:00</updated>
<author>
<name>Sammy Kaye Powers</name>
<email>sammyk@sammykmedia.com</email>
</author>
<published>2017-01-04T17:23:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=dac6c639bb54e93fb24b82d25f74daaa12763512'/>
<id>dac6c639bb54e93fb24b82d25f74daaa12763512</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright headers to 2017</title>
<updated>2017-01-04T17:14:55+00:00</updated>
<author>
<name>Sammy Kaye Powers</name>
<email>sammyk@sammykmedia.com</email>
</author>
<published>2017-01-04T17:14:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=478f119ab9100dbd345a6db5287a0cfb5fda5bf3'/>
<id>478f119ab9100dbd345a6db5287a0cfb5fda5bf3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change Big Endian backup implementations to use signed indexes</title>
<updated>2016-11-01T16:35:54+00:00</updated>
<author>
<name>Sara Golemon</name>
<email>pollita@php.net</email>
</author>
<published>2016-10-12T03:43:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=65d7bbaddcb7d039d201b0c0cd452736fd326c73'/>
<id>65d7bbaddcb7d039d201b0c0cd452736fd326c73</id>
<content type='text'>
load64() counted down from 7..0, but the decrement turned 0 into 255.
This means the loop would never terminate on Big Endian systems.

Just use signed char integers since we're only dealing with values from 0..7 anyway.

Closes https://bugs.php.net/bug.php?id=73282
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
load64() counted down from 7..0, but the decrement turned 0 into 255.
This means the loop would never terminate on Big Endian systems.

Just use signed char integers since we're only dealing with values from 0..7 anyway.

Closes https://bugs.php.net/bug.php?id=73282
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pull-request/1817'</title>
<updated>2016-10-17T16:02:22+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2016-10-17T15:49:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=dcae3ce1e618ef3fbbf74f1e80f2a589ac711895'/>
<id>dcae3ce1e618ef3fbbf74f1e80f2a589ac711895</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pull-request/1816'</title>
<updated>2016-10-17T16:02:19+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2016-10-17T15:50:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4dfd5f4403be85d467992bf8a6bae4de40d4a06e'/>
<id>4dfd5f4403be85d467992bf8a6bae4de40d4a06e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pull-request/1817'</title>
<updated>2016-10-17T16:01:39+00:00</updated>
<author>
<name>Joe Watkins</name>
<email>krakjoe@php.net</email>
</author>
<published>2016-10-17T15:49:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=39ee3184ee42a0ad9314cbb7c75cb72a75b850f5'/>
<id>39ee3184ee42a0ad9314cbb7c75cb72a75b850f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
