1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage utils
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 */
8
9 // Protect from unauthorized access
10 defined('FOF_INCLUDED') or die;
11
12 interface FOFEncryptRandvalinterface
13 {
14 /**
15 *
16 * Returns a cryptographically secure random value.
17 *
18 * @return string
19 *
20 */
21 public function generate();
22 }