Prado\Security\TSecurityManager::getEncryption PHP Метод

getEncryption() публичный Метод

Please use {@link getCryptAlgorithm()} instead.
public getEncryption ( ) : string
Результат string the algorithm used to encrypt/decrypt data.
    public function getEncryption()
    {
        if (is_string($this->_cryptAlgorithm)) {
            return $this->_cryptAlgorithm;
        }
        // fake the pre-3.2.1 answer
        return "3DES";
    }