/* * CREATE_SECURE_MESSAGE * @function ... * @return string */ private static string secureRet(string str, string key) { Cryptography cryptgraph = new Cryptography(); return(cryptgraph.doHASH("sha1", str + key));; }