Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
33.33% |
1 / 3 |
CRAP | |
50.00% |
3 / 6 |
| SecureKey | |
0.00% |
0 / 1 |
|
33.33% |
1 / 3 |
6.00 | |
50.00% |
3 / 6 |
| generate | |
0.00% |
0 / 1 |
1.12 | |
50.00% |
1 / 2 |
|||
| setAlgorithm | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| getAlgorithm | |
0.00% |
0 / 1 |
3.19 | |
33.33% |
1 / 3 |
|||
| <?php | |
| /** | |
| * OAuth 2.0 Secure key generator | |
| * | |
| * @package php-loep/oauth2-server | |
| * @author Alex Bilbie <hello@alexbilbie.com> | |
| * @copyright Copyright (c) 2013 PHP League of Extraordinary Packages | |
| * @license http://mit-license.org/ | |
| * @link http://github.com/php-loep/oauth2-server | |
| */ | |
| namespace League\OAuth2\Server\Util; | |
| use League\OAuth2\Server\Util\KeyAlgorithm\DefaultAlgorithm; | |
| use League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface; | |
| /** | |
| * SecureKey class | |
| */ | |
| class SecureKey | |
| { | |
| protected static $algorithm; | |
| /** | |
| * Generate a new unique code | |
| * | |
| * @param integer $len Length of the generated code | |
| * | |
| * @return string | |
| */ | |
| public static function generate($len = 40) | |
| { | |
| return self::getAlgorithm()->generate($len); | |
| } | |
| /** | |
| * @param KeyAlgorithmInterface $algorithm | |
| */ | |
| public static function setAlgorithm(KeyAlgorithmInterface $algorithm) | |
| { | |
| self::$algorithm = $algorithm; | |
| } | |
| /** | |
| * @return KeyAlgorithmInterface | |
| */ | |
| public static function getAlgorithm() | |
| { | |
| if (is_null(self::$algorithm)) { | |
| self::$algorithm = new DefaultAlgorithm(); | |
| } | |
| return self::$algorithm; | |
| } | |
| } |