fork download
  1. using static System.Text.Encoding;
  2. using System.Security.Cryptography;
  3.  
  4. public class Test {
  5. public static void Main() {
  6. using (var md5 = MD5.Create()) {
  7. var hash = md5.ComputeHash(UTF8.GetBytes("dados"));
  8. }
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/17181/101
Success #stdin #stdout 0.03s 24344KB
stdin
Standard input is empty
stdout
Standard output is empty