国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
回復(fù)內(nèi)容:
Home Backend Development PHP Tutorial 程序員 - 誰能寫個(gè)PHP加密解密的函數(shù),能自定義加密解密key ,謝謝

程序員 - 誰能寫個(gè)PHP加密解密的函數(shù),能自定義加密解密key ,謝謝

Jun 06, 2016 pm 08:43 PM
php data programmer algorithm

誰能寫個(gè)PHP加密解密的函數(shù),能自定義加密解密key ,謝謝

回復(fù)內(nèi)容:

誰能寫個(gè)PHP加密解密的函數(shù),能自定義加密解密key ,謝謝

我初中剛學(xué) VB 時(shí)寫過一個(gè)加密的函數(shù),大概原理(流程)是這樣的:

明文 Xor 密鑰1 得到 密文1
密文1 逐個(gè)字符轉(zhuǎn)換成十六進(jìn)制 得到 密文2
密文2 Xor 密鑰2 得到 密文3 //最終密文

加密的方式有很多很多(如果你要不可逆的可以配合 MD5() 等等函數(shù)來實(shí)現(xiàn),甚至你也可以自己寫一個(gè),哈哈),可以用各種奇技淫巧,可以網(wǎng)上找現(xiàn)成的加密函數(shù),不過我還是建議題主自己動(dòng)腦想一個(gè)算法吧,畢竟搞 Web 的一般不是都盡量不讓人知道自己的加密算法的嗎?自己寫自己的專屬加密算法啊。

還需要寫?Mcrpty

你可以使用Disuse 中的加密函數(shù),代碼如下,非常好用

//從這開始復(fù)制
/**
* $string 明文或密文
* $operation 加密ENCODE或解密DECODE
* $key 密鑰
* $expiry 密鑰有效期
*/
function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
// 動(dòng)態(tài)密匙長度,相同的明文會(huì)生成不同密文就是依靠動(dòng)態(tài)密匙
// 加入隨機(jī)密鑰,可以令密文無任何規(guī)律,即便是原文和密鑰完全相同,加密結(jié)果也會(huì)每次不同,增大破解難度。
// 取值越大,密文變動(dòng)規(guī)律越大,密文變化 = 16 的 $ckey_length 次方 最大32
// 當(dāng)此值為 0 時(shí),則不產(chǎn)生隨機(jī)密鑰
$ckey_length = 32;

<code>// 密匙
// $GLOBALS['discuz_auth_key'] 這里可以根據(jù)自己的需要修改
$key = md5($key ? $key : $GLOBALS['discuz_auth_key']); 

// 密匙a會(huì)參與加解密
$keya = md5(substr($key, 0, 16));
// 密匙b會(huì)用來做數(shù)據(jù)完整性驗(yàn)證
$keyb = md5(substr($key, 16, 16));
// 密匙c用于變化生成的密文
$keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';
// 參與運(yùn)算的密匙
$cryptkey = $keya.md5($keya.$keyc);
$key_length = strlen($cryptkey);
// 明文,前10位用來保存時(shí)間戳,解密時(shí)驗(yàn)證數(shù)據(jù)有效性,10到26位用來保存$keyb(密匙b),解密時(shí)會(huì)通過這個(gè)密匙驗(yàn)證數(shù)據(jù)完整性
// 如果是解碼的話,會(huì)從第$ckey_length位開始,因?yàn)槊芪那?ckey_length位保存 動(dòng)態(tài)密匙,以保證解密正確
$string = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, 16).$string;
$string_length = strlen($string);
$result = '';
$box = range(0, 255);
$rndkey = array();
// 產(chǎn)生密匙簿
for($i = 0; $i  0 驗(yàn)證數(shù)據(jù)有效性
    // substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16) 驗(yàn)證數(shù)據(jù)完整性
    // 驗(yàn)證數(shù)據(jù)有效性,請(qǐng)看未加密明文的格式
    if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) {
        return substr($result, 26);
    } else {
        return '';
    }
} else {
    // 把動(dòng)態(tài)密匙保存在密文里,這也是為什么同樣的明文,生產(chǎn)不同密文后能解密的原因
    // 因?yàn)榧用芎蟮拿芪目赡苁且恍┨厥庾址?,?fù)制過程可能會(huì)丟失,所以用base64編碼
    return $keyc.str_replace('=', '', base64_encode($result));
}
</code>

}
//運(yùn)行如下
$a = "apple";
$b = authcode($a, "ENCODE", "abc123");
echo $b."
";
echo authcode($b, "DECODE", "abc123");

//到這復(fù)制結(jié)束

如果以上代碼你沒有看懂可以去 http://my.oschina.net/wzwitblog/blog/160597 查看

下一個(gè) PHPCMS , 主函數(shù)庫 global 里有, 據(jù)說是 discuz 的.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to get the current session ID in PHP? How to get the current session ID in PHP? Jul 13, 2025 am 03:02 AM

The method to get the current session ID in PHP is to use the session_id() function, but you must call session_start() to successfully obtain it. 1. Call session_start() to start the session; 2. Use session_id() to read the session ID and output a string similar to abc123def456ghi789; 3. If the return is empty, check whether session_start() is missing, whether the user accesses for the first time, or whether the session is destroyed; 4. The session ID can be used for logging, security verification and cross-request communication, but security needs to be paid attention to. Make sure that the session is correctly enabled and the ID can be obtained successfully.

PHP get substring from a string PHP get substring from a string Jul 13, 2025 am 02:59 AM

To extract substrings from PHP strings, you can use the substr() function, which is syntax substr(string$string,int$start,?int$length=null), and if the length is not specified, it will be intercepted to the end; when processing multi-byte characters such as Chinese, you should use the mb_substr() function to avoid garbled code; if you need to intercept the string according to a specific separator, you can use exploit() or combine strpos() and substr() to implement it, such as extracting file name extensions or domain names.

How do you perform unit testing for php code? How do you perform unit testing for php code? Jul 13, 2025 am 02:54 AM

UnittestinginPHPinvolvesverifyingindividualcodeunitslikefunctionsormethodstocatchbugsearlyandensurereliablerefactoring.1)SetupPHPUnitviaComposer,createatestdirectory,andconfigureautoloadandphpunit.xml.2)Writetestcasesfollowingthearrange-act-assertpat

How to split a string into an array in PHP How to split a string into an array in PHP Jul 13, 2025 am 02:59 AM

In PHP, the most common method is to split the string into an array using the exploit() function. This function divides the string into multiple parts through the specified delimiter and returns an array. The syntax is exploit(separator, string, limit), where separator is the separator, string is the original string, and limit is an optional parameter to control the maximum number of segments. For example $str="apple,banana,orange";$arr=explode(",",$str); The result is ["apple","bana

JavaScript Data Types: Primitive vs Reference JavaScript Data Types: Primitive vs Reference Jul 13, 2025 am 02:43 AM

JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.

Using std::chrono in C Using std::chrono in C Jul 15, 2025 am 01:30 AM

std::chrono is used in C to process time, including obtaining the current time, measuring execution time, operation time point and duration, and formatting analysis time. 1. Use std::chrono::system_clock::now() to obtain the current time, which can be converted into a readable string, but the system clock may not be monotonous; 2. Use std::chrono::steady_clock to measure the execution time to ensure monotony, and convert it into milliseconds, seconds and other units through duration_cast; 3. Time point (time_point) and duration (duration) can be interoperable, but attention should be paid to unit compatibility and clock epoch (epoch)

How to pass a session variable to another page in PHP? How to pass a session variable to another page in PHP? Jul 13, 2025 am 02:39 AM

In PHP, to pass a session variable to another page, the key is to start the session correctly and use the same $_SESSION key name. 1. Before using session variables for each page, it must be called session_start() and placed in the front of the script; 2. Set session variables such as $_SESSION['username']='JohnDoe' on the first page; 3. After calling session_start() on another page, access the variables through the same key name; 4. Make sure that session_start() is called on each page, avoid outputting content in advance, and check that the session storage path on the server is writable; 5. Use ses

How does PHP handle Environment Variables? How does PHP handle Environment Variables? Jul 14, 2025 am 03:01 AM

ToaccessenvironmentvariablesinPHP,usegetenv()orthe$_ENVsuperglobal.1.getenv('VAR_NAME')retrievesaspecificvariable.2.$_ENV['VAR_NAME']accessesvariablesifvariables_orderinphp.iniincludes"E".SetvariablesviaCLIwithVAR=valuephpscript.php,inApach

See all articles