summaryrefslogtreecommitdiffstats
path: root/tools/releasetools/check_target_files_signatures
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Add temporary hack to help with merge resolution."Adnan Begovic2015-10-061-442/+1
| | | | | | This reverts commit d2fbc25a6761fa15e72bc25c114c4e5f91adeb24. Change-Id: I861c39c2775f4d6ca57c058fcd9aced6d5b6be0e
* Add temporary hack to help with merge resolution.Adnan Begovic2015-10-061-1/+442
| | | | Change-Id: I1207daf17c2bd3f7f18e35a7705635752535942f
* Make releasetools pylint clean.Dan Albert2015-03-241-441/+1
| | | | | | | | This caught a few bugs/syntax errors (a few character classes were not escaped properly in regex patterns, some indentation was illegal, etc). Change-Id: I50637607524e68c4fb9cad7167f58a46b8d26b2c
* bump releasetools python requirement to 2.7Doug Zongker2014-02-181-2/+2
| | | | | | | These scripts already use some post-2.4 features, so let's make it official: Python 2.7 is needed to run them. Change-Id: I256e9ed99b0b62abe4e22a7b1f811acb7419e88e
* Revert the revert. (its time to sign MR1)Baligh Uddin2013-11-131-17/+2
| | | | | | | | | Revert "Waiting till post MR0 - this impacts signing tools for MR0." This reverts commit a7b5c4a7dc77a0896d6314828b9ce85f82d103e8. Bug: 11334314 Change-Id: I89f8996161e4258b80bf2d0bc7817f0e8e32df13
* Waiting till post MR0 - this impacts signing tools for MR0.Baligh Uddin2013-10-231-2/+17
| | | | | | | | Revert "Modify release tools to replace certs in MMAC files." This reverts commit a6e0466ab5771ab1b9f806b9411015b5ff9852f6. Change-Id: Ib7819185bad119013f307ce4301d5f02190e14ed
* Modify release tools to replace certs in MMAC files.Robert Craig2013-10-221-17/+2
| | | | | | | | | | | | | Added support to perform a string replace of specified dev keys with release keys when using the release tool scripts. Signed-off-by: rpcraig <rpcraig@tycho.ncsc.mil> (cherry picked from commit 817c574d753191c52acd5787da02bb853d4ac090) Change-Id: I51be8d62945436d3f374f51867295c5b792d4b53 Bug: 11334314
* use frozensets to represent APK cert setsDoug Zongker2011-11-111-4/+5
| | | | Change-Id: Ic92c83be0c3f6a76bf1bd21f0216cd1b87586959
* to be upgraded, APKs must have exactly the same set of certsDoug Zongker2011-11-091-2/+2
| | | | Change-Id: I0d528d3d55e5ee553e57e63ed1f998172c6306f8
* allow APKs to be signed with multiple certsDoug Zongker2011-09-291-26/+29
| | | | | | | The Package Manager handles this now. To share a UID, all packages must be signed with exactly the same set of certs. Change-Id: I2fd08923f55f02ae2f1d503266ab124be2472921
* resolved conflicts for merge of a74a4811 to honeycomb-plus-aospYing Wang2011-08-111-0/+5
|\ | | | | | | Change-Id: I8400ac2bead6aa1a9902d44bf65906084ad353ad
| * sha module is deprecateddavid2011-08-101-2/+6
| | | | | | | | | | | | | | This patch removes the deprecated warnings from the python scripts. Change-Id: I052a0aab3fb28dd1d78de1307edafda6b6c35e5f
* | fix check_target_files_signaturesDoug Zongker2011-01-271-4/+2
|/ | | | | | | common.UnzipTemp now returns a 2-tuple instead of just a string. Bug: 3398407 Change-Id: Ifd0408283aaa15752caa549f4510a0a3db03c3fd
* add "EXTERNAL" as special value of LOCAL_CERTIFICATEDoug Zongker2009-12-151-0/+21
| | | | | | | | | Setting LOCAL_CERTIFICATE to "EXTERNAL" now marks an apk (either a prebuilt or otherwise) as needing the default test key within the system, but one that should be signed after the target_files is produced but before sign_target_files_apks does the rest of the signing. (We use this to ship apps on the system that are signed by third parties, like Facebook.)
* add signing checker script to releasetoolsDoug Zongker2009-12-091-0/+428
The check_target_files_signatures determines what key was used to sign every .apk in a given target_files. It can compare that signature to that of another target_files (eg, the previous release for that device) and flag any problems such as .apks signed with a different key.