Program.cs 403 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Quadarax.Foundation.Common.Security;
  7. namespace _Workbench
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. var plain = "foforotopo";
  14. var result = Secure.Encrypt(plain);
  15. Console.WriteLine(result);
  16. }
  17. }
  18. }