Application Signing

From WebOS Internals
Revision as of 13:33, 6 December 2009 by RodWhitby (talk | contribs)
Jump to navigation Jump to search

Palm uses the following technique to verify the authenticity of a webOS application:

/usr/bin/ApplicationInstallerUtility -v -n -c install -p /home/root/com.accuweather.palm_1.0.5_all.ipk
/usr/bin/arm-none-linux-gnueabi-ar xv /home/root/com.accuweather.palm_1.0.5_all.ipk
/usr/bin/openssl verify -CAfile /etc/ssl/certs/appsigning-bundle.crt /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/cert.pem
/usr/bin/openssl x509 -in /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/cert.pem -pubkey > /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/pubkey.pem
/bin/cat /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/control.tar.gz /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/data.tar.gz /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/debian-binary | /usr/bin/openssl dgst -sha1 -verify /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/pubkey.pem -signature /home/root/com.accuweather.palm_1.0.5_all.ipk_tmpdir/signature.sha1
/usr/bin/ipkg -o /var -force-overwrite install /home/root/com.accuweather.palm_1.0.5_all.ipk

Preware.org maintains a similar certification process for developers of advanced homebrew packages that require the execution of installation scripts that require root privileges.

The Preware.org root certificate (preware-ca-bundle.crt) has the following SHA1 fingerprint: 31:D8:23:35:20:86:B0:56:B4:D5:64:74:91:2B:8E:85:54:05:5E:FF and expires on Dec 7 10:11:22 2019 GMT.

The WebOS Internals signing certificate (org.webosinternals.crt) has the following SHA1 fingerprint: F7:DC:1C:87:68:E2:13:DB:84:6D:DA:A8:CC:50:B6:EF:6F:5B:79:D9 and expires on Jan 5 10:51:08 2012 GMT.

The Optware signing certificate (mobi.optware.crt) has the following SHA1 fingerprint: C6:82:F9:3A:EA:1E:E7:3A:B9:82:ED:91:1C:BF:11:77:AD:DB:A0:4F and expires on Jan 5 10:57:55 2012 GMT.

To create a modified version of the Palm application installer, that verifies Preware.org signed packages:

 cp preware-ca-bundle.crt /etc/ssl/certs/
 sed -i -e 's/appsigning-bundle/preware-ca-bundle/' /usr/bin/ApplicationInstallerUtility > /usr/bin/PrewareInstallerUtility ; chmod ugo+x /usr/bin/PrewareInstallerUtility