<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libimobiledevice/common, branch master</title>
<subtitle>A cross-platform protocol library to access iOS devices</subtitle>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/'/>
<entry>
<title>debug: Silence some compiler warnings</title>
<updated>2025-06-12T05:28:55+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2025-06-12T05:28:55+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=8b316af7539650e7ed8f913530d9a5473bf664ed'/>
<id>8b316af7539650e7ed8f913530d9a5473bf664ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add milliseconds to debug messages and remove unnecessary allocations</title>
<updated>2025-06-09T09:41:26+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2025-06-09T09:41:26+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=796d09d32de51e933bb300d9847c46e3a96eb9ac'/>
<id>796d09d32de51e933bb300d9847c46e3a96eb9ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use SHA256 signature instead of SHA1 for iOS 4 and newer when creating and signing pairing certificates</title>
<updated>2025-06-07T12:46:22+00:00</updated>
<author>
<name>Josef Micka</name>
</author>
<published>2025-06-07T12:44:57+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=c40be2774067703209ec5d3b2a975034b2fb7440'/>
<id>c40be2774067703209ec5d3b2a975034b2fb7440</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix compilation on MSVC</title>
<updated>2024-11-29T13:38:42+00:00</updated>
<author>
<name>Duncan Ogilvie</name>
</author>
<published>2024-11-27T11:56:02+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=9bc95a0c307e7614cc3d10671d6c1c90c3ac0a9f'/>
<id>9bc95a0c307e7614cc3d10671d6c1c90c3ac0a9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix attempts to detect Windows using _WIN32</title>
<updated>2024-11-29T13:36:34+00:00</updated>
<author>
<name>Duncan Ogilvie</name>
</author>
<published>2024-11-27T11:01:18+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=bcced6c4f6a79e09ed3961632b2faf81fe873137'/>
<id>bcced6c4f6a79e09ed3961632b2faf81fe873137</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>common: Add libimobiledevice-glue to dependencies</title>
<updated>2024-05-16T22:44:33+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2024-05-16T22:44:33+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=469d21c6d506d107a5462c8b10e516f5790c35d3'/>
<id>469d21c6d506d107a5462c8b10e516f5790c35d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>common/userpref: remove X509V3_EXT_cleanup()</title>
<updated>2024-04-26T23:41:28+00:00</updated>
<author>
<name>orbea</name>
</author>
<published>2024-04-23T16:15:51+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=80d5f46cea8f7b8692c0d1f076b52195ba766eef'/>
<id>80d5f46cea8f7b8692c0d1f076b52195ba766eef</id>
<content type='text'>
When building libimobiledevice with libressl 3.9 it fails with an
implicit declaration for X509V3_EXT_cleanup().

This was removed in libressl "because it was part of a dangerous,
incomplete and mostly useless API".

Additionally it doesn't seem to be actually used by libimobiledevice:

"It cleans up the stack containing custom extensions which
libimobiledevice doesn't use, it's only needed after calls to
X509V3_EXT_add{,_list,_alias}()."

Reference: https://github.com/libressl/portable/issues/1050
Signed-off-by: orbea &lt;orbea@riseup.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When building libimobiledevice with libressl 3.9 it fails with an
implicit declaration for X509V3_EXT_cleanup().

This was removed in libressl "because it was part of a dangerous,
incomplete and mostly useless API".

Additionally it doesn't seem to be actually used by libimobiledevice:

"It cleans up the stack containing custom extensions which
libimobiledevice doesn't use, it's only needed after calls to
X509V3_EXT_add{,_list,_alias}()."

Reference: https://github.com/libressl/portable/issues/1050
Signed-off-by: orbea &lt;orbea@riseup.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Move LIBIMOBILEDEVICE_API to public headers</title>
<updated>2024-01-31T01:57:11+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2024-01-31T01:57:11+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=63bbac545efc400373a7f472fdd78174149119c3'/>
<id>63bbac545efc400373a7f472fdd78174149119c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>automake: Reorder CFLAGS to fix build issues and use correct SSL library flags across Makefiles</title>
<updated>2023-10-06T23:49:55+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2023-10-06T23:49:55+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=ba2fb48cfa4d62d86bc22913c87a05ffac5319c2'/>
<id>ba2fb48cfa4d62d86bc22913c87a05ffac5319c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence (v)asprintf related compiler warnings</title>
<updated>2023-07-05T11:00:57+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2023-07-05T11:00:57+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.libimobiledevice.org/libimobiledevice.git/commit/?id=8163ca0c237da92a2c1ab31eae2480d1e76a9d01'/>
<id>8163ca0c237da92a2c1ab31eae2480d1e76a9d01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
