summaryrefslogtreecommitdiffstats
path: root/Core/Util/SecureRandomInterface.php
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2015-10-07 09:44:07 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2015-10-07 09:44:07 +0200
commit82a1ebbc0f0a570b28d5ede8243733c20971564c (patch)
tree8f5c8b38de75c2eb26bf7412cd714b6756c9738f /Core/Util/SecureRandomInterface.php
parent4e3ea9f244ad465865c2384f3d9ba2f89361d364 (diff)
parent5d74e1996313fc483fed9d4040acfa7f7b4fd297 (diff)
downloadsymfony-security-82a1ebbc0f0a570b28d5ede8243733c20971564c.zip
symfony-security-82a1ebbc0f0a570b28d5ede8243733c20971564c.tar.gz
symfony-security-82a1ebbc0f0a570b28d5ede8243733c20971564c.tar.bz2
Merge branch '2.8'
Conflicts: composer.json src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml src/Symfony/Bundle/FrameworkBundle/Resources/config/routing.xml src/Symfony/Bundle/FrameworkBundle/Resources/config/security_csrf.xml src/Symfony/Bundle/FrameworkBundle/composer.json src/Symfony/Component/DependencyInjection/ContainerBuilder.php src/Symfony/Component/Security/Core/composer.json src/Symfony/Component/Security/Csrf/composer.json src/Symfony/Component/Security/Http/composer.json src/Symfony/Component/Security/composer.json src/Symfony/Component/Translation/PluralizationRules.php src/Symfony/Component/VarDumper/Exception/ThrowingCasterException.php
Diffstat (limited to 'Core/Util/SecureRandomInterface.php')
-rw-r--r--Core/Util/SecureRandomInterface.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/Core/Util/SecureRandomInterface.php b/Core/Util/SecureRandomInterface.php
deleted file mode 100644
index 87d3ace..0000000
--- a/Core/Util/SecureRandomInterface.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Security\Core\Util;
-
-/**
- * Interface that needs to be implemented by all secure random number generators.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
-interface SecureRandomInterface
-{
- /**
- * Generates the specified number of secure random bytes.
- *
- * @param int $nbBytes
- *
- * @return string
- */
- public function nextBytes($nbBytes);
-}