mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-09 02:41:06 +03:00
Merge branch 'support-all-signing-key-types' into 'master'
support all APK signing key types: DSA, EC, RSA The lovely python getsig replacement was only looking for .RSA files, but the signing key is defined as: "A signature block file with a .DSA, .RSA, or .EC extension" https://docs.oracle.com/javase/7/docs/technotes/tools/windows/jarsigner.html For more info: https://f-droid.org/forums/topic/binary-repo-whatsapp-error See merge request !51
This commit is contained in:
commit
76332e7c0e
1 changed files with 2 additions and 1 deletions
|
@ -329,7 +329,8 @@ def resize_all_icons(repodirs):
|
||||||
resize_icon(iconpath, density)
|
resize_icon(iconpath, density)
|
||||||
|
|
||||||
|
|
||||||
cert_path_regex = re.compile(r'^META-INF/.*\.RSA$')
|
# A signature block file with a .DSA, .RSA, or .EC extension
|
||||||
|
cert_path_regex = re.compile(r'^META-INF/.*\.(DSA|EC|RSA)$')
|
||||||
|
|
||||||
|
|
||||||
def getsig(apkpath):
|
def getsig(apkpath):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue