File Manager

Current Directory: /home/astoriaah/www/libraries/fof30/Encrypt
Viewing File: /home/astoriaah/www/libraries/fof30/Encrypt/RandvalInterface.php
<?php /** * @package FOF * @copyright Copyright (c)2010-2018 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Encrypt; // Protect from unauthorized access defined('_JEXEC') or die(); interface RandvalInterface { /** * * Returns a cryptographically secure random value. * * @return string * */ public function generate(); }