Esempio n. 1
0
 public static string getDecipherString(string submitted)
 {
     if (submitted != null && submitted != "")
     {
         KardoEncryptionASCII kardoEn = new KardoEncryptionASCII(submitted, "decipher");
         return(kardoEn.getDecipherString());
     }
     return("");
 }
Esempio n. 2
0
    public static string getEncryptedString(string submitted)
    {
        KardoEncryptionASCII kardoEn = new KardoEncryptionASCII(submitted, "encrypt");

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

        return(kardoEn.getEncryptedString());
    }