31 lines
622 B
PHP
31 lines
622 B
PHP
<?php
|
|
/**
|
|
* @package awf
|
|
* @copyright Copyright (c)2014-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU GPL version 3 or later
|
|
*/
|
|
|
|
/**
|
|
* The Session package in Awf is based on the Session package in Aura for PHP. Please consult the LICENSE file in the
|
|
* Awf\Session package for copyright and license information.
|
|
*/
|
|
|
|
namespace Awf\Session;
|
|
|
|
/**
|
|
* Interface for generating cryptographically-secure random values.
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
interface RandvalInterface
|
|
{
|
|
/**
|
|
*
|
|
* Returns a cryptographically secure random value.
|
|
*
|
|
* @return string
|
|
*
|
|
*/
|
|
public function generate();
|
|
}
|