Home
last modified time | relevance | path

Searched refs:_keyFile (Results 1 – 1 of 1) sorted by relevance

/plugin/securelogin/
H A Dhelper.php18 protected $_keyFile; variable in helper_plugin_securelogin
32 $this->_keyFile = $conf['cachedir'].'/securelogin.key';
57 if(!$this->_key && file_exists($this->_keyFile)) {
58 $this->_key = openssl_pkey_get_private(file_get_contents($this->_keyFile));
63 … $this->savePublicInfo($this->getPublicKeyInfo(file_get_contents($this->_keyFile)));
85 if(!openssl_pkey_export_to_file($newkey, $this->_keyFile))
88 $this->_key = openssl_pkey_get_private(file_get_contents($this->_keyFile));
89 $this->savePublicInfo($this->getPublicKeyInfo(file_get_contents($this->_keyFile)));