public static string getEncryptedString(string submitted) { KardoEncryptionASCII kardoEn = new KardoEncryptionASCII(submitted, "encrypt"); return(kardoEn.getEncryptedString()); }
public static string getEncryptedString(int submitted, int minChar) { KardoEncryptionASCII kardoEn = new KardoEncryptionASCII(submitted.ToString(), "encrypt", minChar); return(kardoEn.getEncryptedString()); }