using System.Security.Cryptography;
public static void Main()
var jobName = "https://tobiitechjenkins.tobii.intra/job/TobiiTech/job/Platform/job/PDK/job/PostMergeVerification/job/master/";
var commitsha = "79349a4165b8ea31ee7906ae2e76780eda0762ec";
var input = $"{jobName}:{commitsha}";
Console.WriteLine("id " + input);
using (SHA1Managed sha1 = new SHA1Managed())
var hash = sha1.ComputeHash(Encoding.UTF8.GetBytes(input));
var sb = new StringBuilder(hash.Length * 2);
sb.Append(b.ToString("X2"));
Console.WriteLine("sha1: " + sb);