mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Merge branch 'add-sig-algs-1' into 'master'
Adding support for DSA and ECDSA signatures in binaries Before this patch only RSA signature files was supported when using the Binaries metadata directive as described in https://f-droid.org/wiki/page/Deterministic,_Reproducible_Builds. This patch simply makes .DSA and .EC files also be recognised as signature files. See merge request !133
This commit is contained in:
commit
d6ab05c567
1 changed files with 1 additions and 1 deletions
|
|
@ -1848,7 +1848,7 @@ def place_srclib(root_dir, number, libpath):
|
|||
if not placed:
|
||||
o.write('android.library.reference.%d=%s\n' % (number, relpath))
|
||||
|
||||
apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z]+\.(SF|RSA)')
|
||||
apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z]+\.(SF|RSA|DSA|EC)')
|
||||
|
||||
|
||||
def verify_apks(signed_apk, unsigned_apk, tmp_dir):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue