# xn\_encrypt()
## xn\_encrypt()
```
<pre class="calibre11">```
xn_encrypt($txt, $key = '')
```
```
#### 【功能】
对字符串的可逆加密函数。根据 $key 随机生成,结果可以直接 URL 传递。
此函数有 C 语言实现并且有所增强的 PHP 扩展版本(xiuno.so),比 PHP 速度快 200+ 倍,对安全性和速度要求较高的情况下可以使用,可以定制 key,将 key 存放于 .so (内存)中(key 明文存放于文件不够安全),可以绑定 cpuid,防止 so 被拷贝后运行,有需要的请与我联系:axiuno@gmail.com
#### 【参数】
```
<pre class="calibre11">```
$txt:需要加密的字符串
```
```
#### 【用例】
```
<pre class="calibre11">```
<?php
include './xiunophp/xiunophp.php';
$s = "1\n21232f297a57a5a743894a0e4a801fc3\n127.0.0.1";
$s2 = xn_encrypt($s, 'KSLEKFJ2K2KK');
print_r($s2);
// 结果: nUg0N_2F1sxjgARMREdcpfdONmDLiEL79QiyD9rSKLqr8wklbn7_2bdreFHInHGrdqU_2F
?>
```
```
- XiunoPHP 入门
- 什么是 XiunoPHP?
- 关于 URL 格式
- 编码规范
- 全局变量
- $starttime
- $time
- $conf
- $ip
- $longip
- $ajax
- $method
- $db
- $cache
- $errno
- $errstr
- 数据库函数
- DB 配置
- db_insert()
- db_create()
- db_replace()
- db_update()
- db_delete()
- db_find_one()
- db_find()
- db_count()
- db_maxid()
- db_connect()
- db_truncate()
- db_sql_find()
- db_sql_find_one()
- db_exec()
- db_new()
- db_close()
- 缓存函数
- CACHE 配置
- cache_set()
- cache_get()
- cache_delete()
- cache_truncate()
- cache_new()
- 数组增强
- array_value()
- array_filter_empty()
- array_addslashes()
- array_stripslashes()
- array_htmlspecialchars()
- array_trim()
- array_diff_value()
- array_assoc_slice()
- arrlist_multisort()
- arrlist_cond_orderby()
- arrlist_key_values()
- arrlist_values()
- arrlist_change_key()
- arrlist_chunk()
- 杂项函数
- xn_strlen()
- xn_substr()
- xn_urlencode()
- xn_urldecode()
- xn_json_encode()
- xn_json_decode()
- xn_encrypt()
- xn_decrypt()
- xn_message()
- xn_error()
- xn_log()
- xn_txt_to_html()
- xn_rand()
- xn_is_writable()
- humandate()
- humannumber()
- humansize()
- param()
- lang()
- url()
- pagination()
- is_robot()
- http_get()
- http_post()
- https_get()
- https_post()
- http_multi_get()
- file_replace_var()
- file_get_contents_try()
- file_put_contents_try()
- in_string()
- file_ext()
- file_pre()
- file_name()
- http_url_path()
- glob_recursive()
- rmdir_recusive()
- copy_recusive()
- _GET() _POST() _COOKIE() ...