public static string GetResourceIdentifier(Stream stream)
 {
     return(HashHelper.GetSHA256(stream));
 }
 public static string GetResourceIdentifier(byte[] file)
 {
     return(HashHelper.GetSHA256(file));
 }