예제 #1
0
    public static string getEncryptedString(string submitted)
    {
        KardoEncryptionASCII kardoEn = new KardoEncryptionASCII(submitted, "encrypt");

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

        return(kardoEn.getEncryptedString());
    }