芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/clients/_alpage-services.fr/wp-content/plugins/easy-wp-smtp/easy-wp-smtp-utils.php
enc_key = $key; } public static function get_instance() { // If the single instance hasn't been set, set it now. if ( null == self::$instance ) { self::$instance = new self; } return self::$instance; } function encrypt_password( $pass ) { if ( $pass === '' ) { return ''; } $password = Cryptor::Encrypt( $pass, $this->enc_key ); return $password; } function decrypt_password( $pass ) { $password = Cryptor::Decrypt( $pass, $this->enc_key ); return $password; } }