git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5687 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
gwoo 2007-09-24 09:56:25 +00:00
parent 8f4dd39257
commit 54854aff43

View file

@ -80,6 +80,9 @@ class Security extends Object{
*/
function generateAuthKey() {
$_this =& Security::getInstance();
if(!class_exists('String')) {
uses('string');
}
return $_this->hash(String::uuid());
}
/**