Program.cs 359 B

123456789101112131415161718
  1. using DecryptPwd.utils;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace DecryptPwd
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. String res=FoxmailUtils.decodePW(19, "fff");
  14. System.Console.WriteLine(res);
  15. }
  16. }
  17. }