Skip to content

Commit

Permalink
Merge pull request #18627 from RameshRavone/patch-2
Browse files Browse the repository at this point in the history
Fix: JAR files signed with the MD5 algorithm as unsigned (godot 3)
  • Loading branch information
mhilbrunner authored May 8, 2018
2 parents 9b1fdad + d318224 commit c32b24d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/android/export/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1643,9 +1643,9 @@ class EditorExportAndroid : public EditorExportPlatform {

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");
Expand Down

0 comments on commit c32b24d

Please sign in to comment.