Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-18 01:38:09 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-18 01:38:09 +0300
commit0de646eb4cc29b9ca6b5098d4190ee22afe42536 (patch)
tree02962af614ca5cf6ccbaebf87b9ed44812305431 /mcs
parent34c202a092be853aadfa736cddc83748fdd26487 (diff)
parentf378e76b0d5d3167008d3b2d43b5e4648e5f2d6e (diff)
Merge pull request #2350 from akoeplinger/signcode-sha1
[signcode] Change default hashing algorithm from MD5 to SHA1
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/Mono.Security/Mono.Security.Authenticode/AuthenticodeFormatter.cs2
-rw-r--r--mcs/tools/security/signcode.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/Mono.Security/Mono.Security.Authenticode/AuthenticodeFormatter.cs b/mcs/class/Mono.Security/Mono.Security.Authenticode/AuthenticodeFormatter.cs
index 3790c194f01..f91a3a95948 100644
--- a/mcs/class/Mono.Security/Mono.Security.Authenticode/AuthenticodeFormatter.cs
+++ b/mcs/class/Mono.Security/Mono.Security.Authenticode/AuthenticodeFormatter.cs
@@ -77,7 +77,7 @@ namespace Mono.Security.Authenticode {
public string Hash {
get {
if (hash == null)
- hash = "MD5";
+ hash = "SHA1";
return hash;
}
set {
diff --git a/mcs/tools/security/signcode.cs b/mcs/tools/security/signcode.cs
index 2e8d475e643..1a8047134c0 100644
--- a/mcs/tools/security/signcode.cs
+++ b/mcs/tools/security/signcode.cs
@@ -35,7 +35,7 @@ namespace Mono.Tools {
Console.WriteLine ("Usage: signcode [options] filename{0}", Environment.NewLine);
Console.WriteLine ("\t-spc spc\tSoftware Publisher Certificate file");
Console.WriteLine ("\t-v pvk\t\tPrivate Key file");
- Console.WriteLine ("\t-a md5 | sha1\tHash Algorithm (default: MD5)");
+ Console.WriteLine ("\t-a sha1 | md5\tHash Algorithm (default: SHA1)");
Console.WriteLine ("\t-$ indivisual | commercial\tSignature type");
Console.WriteLine ("\t-n description\tDescription for the signed file");
Console.WriteLine ("\t-i url\tURL for the signed file");