Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
using GeneXus.Application;
using GeneXus.Utils;
using Jayrock.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;

namespace GeneXus.SD.Store
{
Expand All @@ -31,7 +26,7 @@ public static JObject FromJSonString(string s)

private static byte[] GetHash(string inputString)
{
HashAlgorithm algorithm = MD5.Create();
HashAlgorithm algorithm = SHA256.Create();
return algorithm.ComputeHash(Encoding.UTF8.GetBytes(inputString));
}

Expand Down