public static string CreatePasswordCapHash(string password, string salt, string captcha) { var encryptionService = new EncryptionService(); return encryptionService.CreatePasswordCapHash(password, salt, captcha); }
public static string CreateSaltKey() { var encriptionServcie = new EncryptionService(); return encriptionServcie.CreateSaltKey(); }
public static string CreatePasswordHash(string password, string salt) { var encriptionServcie = new EncryptionService(); return encriptionServcie.CreatePasswordHash(password, salt); }