Ejemplo n.º 1
0
        /*
         *  CREATE_SECURE_MESSAGE
         *  @function       ...
         *  @return         string
         */
        private static string secureRet(string str, string key)
        {
            Cryptography cryptgraph = new Cryptography();

            return(cryptgraph.doHASH("sha1", str + key));;
        }