Merge pull request #18627 from RameshRavone/patch-2

Fix: JAR files signed with the MD5 algorithm as unsigned (godot 3)
This commit is contained in:
Max Hilbrunner 2018-05-08 04:31:20 +02:00 committed by GitHub
commit c32b24da70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1643,9 +1643,9 @@ public:
List<String> args;
args.push_back("-digestalg");
args.push_back("SHA1");
args.push_back("SHA-256");
args.push_back("-sigalg");
args.push_back("MD5withRSA");
args.push_back("SHA256withRSA");
String tsa_url = EditorSettings::get_singleton()->get("export/android/timestamping_authority_url");
if (tsa_url != "") {
args.push_back("-tsa");