mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
33 lines
736 B
PHP
33 lines
736 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\base;
|
|
|
|
use yii\base\Security;
|
|
|
|
/**
|
|
* ExposedSecurity exposes protected methods for direct testing.
|
|
*/
|
|
class ExposedSecurity extends Security
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function hkdf($algo, $inputKey, $salt = null, $info = null, $length = 0)
|
|
{
|
|
return parent::hkdf($algo, $inputKey, $salt, $info, $length);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function pbkdf2($algo, $password, $salt, $iterations, $length = 0)
|
|
{
|
|
return parent::pbkdf2($algo, $password, $salt, $iterations, $length);
|
|
}
|
|
}
|