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";
    }