diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-05-08 04:31:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 04:31:20 +0200 |
commit | c32b24da70ebf345a2c6aa4092ee7b96c1a2a6ac (patch) | |
tree | 91b5b049a698461a92bb4b303f97776b7ba12c53 | |
parent | 9b1fdad035f226bb7eba3e592083fc40a9e1ab27 (diff) | |
parent | d3182248c4ab29ab20decabe17066018298a8073 (diff) |
Merge pull request #18627 from RameshRavone/patch-2
Fix: JAR files signed with the MD5 algorithm as unsigned (godot 3)
-rw-r--r-- | platform/android/export/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 6ed03d7aee..6fe137a386 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -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"); |