2013-11-01 01:15:14 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-11 11:58:15 +02:00
|
|
|
* PrivateBin
|
2013-11-01 01:15:14 +01:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2013-11-01 01:15:14 +01:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
2016-07-19 13:56:52 +02:00
|
|
|
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2022-12-24 05:52:07 +01:00
|
|
|
* @version 1.5.1
|
2013-11-01 01:15:14 +01:00
|
|
|
*/
|
2016-12-12 18:43:23 +01:00
|
|
|
|
2016-12-12 18:49:08 +01:00
|
|
|
namespace PrivateBin\Persistence;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2021-06-08 22:01:29 +02:00
|
|
|
use PrivateBin\Data\AbstractData;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2013-11-01 01:15:14 +01:00
|
|
|
/**
|
2016-08-09 11:54:42 +02:00
|
|
|
* ServerSalt
|
2013-11-01 01:15:14 +01:00
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* This is a random string which is unique to each PrivateBin installation.
|
2013-11-01 01:15:14 +01:00
|
|
|
* It is automatically created if not present.
|
|
|
|
*
|
|
|
|
* Salt is used:
|
2016-07-11 11:58:15 +02:00
|
|
|
* - to generate unique VizHash in discussions (which are not reproductible across PrivateBin servers)
|
|
|
|
* - to generate unique deletion token (which are not re-usable across PrivateBin servers)
|
2013-11-01 01:15:14 +01:00
|
|
|
*/
|
2016-08-09 11:54:42 +02:00
|
|
|
class ServerSalt extends AbstractPersistence
|
2013-11-01 01:15:14 +01:00
|
|
|
{
|
|
|
|
/**
|
2015-08-16 15:55:31 +02:00
|
|
|
* generated salt
|
|
|
|
*
|
2013-11-01 01:15:14 +01:00
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $_salt = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* generate a large random hexadecimal salt
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function generate()
|
|
|
|
{
|
2021-06-13 10:44:26 +02:00
|
|
|
return bin2hex(random_bytes(256));
|
2013-11-01 01:15:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get server salt
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function get()
|
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
if (strlen(self::$_salt)) {
|
|
|
|
return self::$_salt;
|
|
|
|
}
|
2013-11-01 01:15:14 +01:00
|
|
|
|
2021-06-08 22:01:29 +02:00
|
|
|
$salt = self::$_store->getValue('salt');
|
|
|
|
if ($salt) {
|
|
|
|
self::$_salt = $salt;
|
2015-08-27 21:41:21 +02:00
|
|
|
} else {
|
|
|
|
self::$_salt = self::generate();
|
2021-06-16 05:32:45 +02:00
|
|
|
if (!self::$_store->setValue(self::$_salt, 'salt')) {
|
|
|
|
error_log('failed to store the server salt, delete tokens, traffic limiter and user icons won\'t work');
|
|
|
|
}
|
2013-11-01 01:15:14 +01:00
|
|
|
}
|
2015-08-27 21:41:21 +02:00
|
|
|
return self::$_salt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the path
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
2021-06-08 22:01:29 +02:00
|
|
|
* @param AbstractData $store
|
2015-08-27 21:41:21 +02:00
|
|
|
*/
|
2021-06-08 22:01:29 +02:00
|
|
|
public static function setStore(AbstractData $store)
|
2015-08-27 21:41:21 +02:00
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
self::$_salt = '';
|
2021-06-08 22:01:29 +02:00
|
|
|
parent::setStore($store);
|
2013-11-01 01:15:14 +01:00
|
|
|
}
|
|
|
|
}
|