mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Make it easier to reference another app's signature
This commit is contained in:
parent
fdc04fe64e
commit
0febe11eb0
@ -41,6 +41,9 @@ keydname = "CN=Birdman, OU=Cell, O=Alcatraz, L=Alcatraz, S=California, C=US"
|
||||
#for particular applications. Normally, just leave it empty.
|
||||
keyaliases = {}
|
||||
keyaliases['com.example.app'] = 'example'
|
||||
#You can also force an app to use the same key alias as another one, using
|
||||
#the @ prefix.
|
||||
keyaliases['com.example.another.plugin'] = '@com.example.another'
|
||||
|
||||
#The ssh path to the server's public web root directory. This is used for
|
||||
#uploading data, etc.
|
||||
|
@ -84,6 +84,10 @@ def main():
|
||||
if appid in keyaliases:
|
||||
# For this particular app, the key alias is overridden...
|
||||
keyalias = keyaliases[appid]
|
||||
if keyalias.startswith('@'):
|
||||
m = md5.new()
|
||||
m.update(keyalias[1:])
|
||||
keyalias = m.hexdigest()[:8]
|
||||
else:
|
||||
m = md5.new()
|
||||
m.update(appid)
|
||||
|
Loading…
Reference in New Issue
Block a user