base\Security $kdfHash

$kdfHash public property Hash algorithm for key derivation. Recommend sha256, sha384 or sha512. See also \yii\base\hash_algos(). public string $kdfHash = 'sha256'

base\Security $derivationIterations

$derivationIterations public property Derivation iterations count. Set as high as possible to hinder dictionary password attacks. public integer $derivationIterations = 100000

base\Security $cipher

$cipher public property The cipher to use for encryption and decryption. public string $cipher = 'AES-128-CBC'

base\Security $authKeyInfo

$authKeyInfo public property HKDF info value for derivation of message authentication key. See also hkdf(). public string $authKeyInfo = 'AuthorizationKey'

base\Security $allowedCiphers

$allowedCiphers public property Look-up table of block sizes and key sizes for each supported OpenSSL cipher. In each element, the key is one of the ciphers supported by OpenSSL (@see openssl_get_cipher_methods()). The value is an array of two integers, the first is the cipher's block size in bytes and the second is the key size in bytes. Warning: All OpenSSL ciphers that we recommend are in the default value, i.e. AES in CBC mode. Note: Yii's encryption protocol uses the same size for c

base\Response send()

send() public method Sends the response to client. public void send ( )

base\Response clearOutputBuffers()

clearOutputBuffers() public method Removes all existing output buffers. public void clearOutputBuffers ( )

base\Response $exitStatus

$exitStatus public property The exit status. Exit statuses should be in the range 0 to 254. The status 0 means the program terminates successfully. public integer $exitStatus = 0

base\Request setScriptFile()

setScriptFile() public method Sets the entry script file path. The entry script file path can normally be determined based on the SCRIPT_FILENAME SERVER variable. However, for some server configurations, this may not be correct or feasible. This setter is provided so that the entry script file path can be manually specified. public void setScriptFile ( $value )$value string The entry script file path. This can be either a file path or a path alias. throws yii\base\InvalidConfigException

base\Request setIsConsoleRequest()

setIsConsoleRequest() public method Sets the value indicating whether the current request is made via command line public void setIsConsoleRequest ( $value )$value boolean The value indicating whether the current request is made via command line