這篇文章主要講解了“php和go按位異結(jié)果有什么不同”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“php和go按位異結(jié)果有什么不同”吧!
創(chuàng)新互聯(lián)公司專注于企業(yè)成都全網(wǎng)營銷、網(wǎng)站重做改版、汾西網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、成都h5網(wǎng)站建設(shè)、購物商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為汾西等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
PHP的按位異或
echo "'Y'的ASCII值是:" . ord('Y') . PHP_EOL; echo "8的ASCII值是:" . ord(8) . PHP_EOL; echo "'8'的ASCII值是:" . ord('8') . PHP_EOL; echo "'Y' ^ 8 = " . ('Y' ^ 8) . PHP_EOL; // 8 echo "'Y' + 8 = " . ('Y' + 8) . PHP_EOL; // 8 echo "'Y' ^ '8' = " . ('Y' ^ '8') . PHP_EOL; // a echo "89 ^ 8 = " . (89 ^ 8) . PHP_EOL; // 81 echo "'89' ^ 8 = " . ('89' ^ 8) . PHP_EOL; // 81
#解析 // Y ascii 89 ^ '8' ascii 56 // 89 ^ 8 = 1011001 // ^ 0001000 // = 1010001 = 64 + 16 + 4 + 1 = 81 // 89 ^ 56 = 1011001 // ^ 0111000 // = 1100001 = 64 + 32 + 1 = 97 = a
#結(jié)果 'Y'的ASCII值是:89 8的ASCII值是:56 '8'的ASCII值是:56 'Y' ^ 8 = 8 'Y' + 8 = 8 'Y' ^ '8' = a 89 ^ 8 = 81 '89' ^ 8 = 81
php 非數(shù)字字符串和整型 運算 時,取值為0
Go的按位異或
func main() { fmt.Println("'Y' ^ 8 =", 'Y' ^ 8) fmt.Println("'Y' ^ '8' =", 'Y' ^ '8') fmt.Println("89 ^ 8 =", 89 ^ 8) }
#結(jié)果 'Y' ^ 8 = 81 'Y' ^ '8' = 97 89 ^ 8 = 81
go相對來說還是比較嚴(yán)謹(jǐn),將rune都轉(zhuǎn)為了對應(yīng)ascii碼值進(jìn)行運算
// 加密函數(shù) function encryptOp($string) { $string = str_replace(' ', '+', $string);//2019-9-8 16:36:12 把空格替換為+號,+號在傳遞過程中變成了空格; $encryptKey = md5(rand(0, 32000)); // 用于加密的key $init = 0; // 初始化變量長度 $tmp = ''; $strLen = strlen($string); // 待加密字符串的長度 $encryptKeyLen = strlen($encryptKey); // 加密key的長度 for ($index = 0; $index < $strLen; $index++) { $init = $init == $encryptKeyLen ? 0 : $init; // 如果 $init = $encryptKey 的長度, 則 $init 清零 // $tmp 字串在末尾增加兩位, 其第一位內(nèi)容為 $encryptKey 的第 $init 位, // 第二位內(nèi)容為 $string 的第 $index 位與 $encryptKey 的 $init 位取異或。然后 $init = $init + 1 $tmp .= $encryptKey[$init] . ($string[$index] ^ $encryptKey[$init++]); } // 返回結(jié)果,結(jié)果為 passportKeyOp() 函數(shù)返回值的 base65 編碼結(jié)果 return base64_encode(passportKeyOp($tmp)); } // 密匙處理函數(shù) function passportKeyOp($string) { $encrypt_key = 'abcdefghijkl'; $encryptKey = md5($encrypt_key); // 加密的key $init = 0; $tmp = ''; $len = strlen($string); $encryptKeyLen = strlen($encryptKey); for ($index = 0; $index < $len; $index++) { $init = $init == $encryptKeyLen ? 0 : $init; $tmp .= $string[$index] ^ $encryptKey[$init++]; } return $tmp; } // 解密函數(shù) function decryptOp($string) { $string = passportKeyOp(base64_decode($string)); $tmp = ''; $len = strlen($string); for ($index = 0; $index < $len; $index++) { if (!isset($string[$index]) || !isset($string[$index + 1])) { return false; } $tmp .= $string[$index] ^ $string[++$index]; } return $tmp; } $id = "123456"; $idStr = encryptOp($id); echo $idStr . PHP_EOL; echo decryptOp($idStr) . PHP_EOL;
package main import ( "crypto/md5" "encoding/base64" "fmt" "math/rand" "strconv" "strings" "time" ) func Md5(str string) string { if str == "" { return "" } init := md5.New() init.Write([]byte(str)) return fmt.Sprintf("%x", init.Sum(nil)) } func MtRand(min, max int64) int64 { r := rand.New(rand.NewSource(time.Now().UnixNano())) return r.Int63n(max-min+1) + min } func encryptOp(str string) string { encryptKey := strconv.Itoa(int(MtRand(0, 32000))) init := 0 tmp := "" strPlus := []rune(str) strLen := len(strPlus) encryptKeyPlus := []rune(encryptKey) encryptKeyLen := len(encryptKeyPlus) for index := 0; index < strLen; index++ { if init == encryptKeyLen { init = 0 } strInt := int(strPlus[index]) encryptKeyInt := int(encryptKeyPlus[init]) tmp += string(encryptKeyPlus[init]) + string(rune(strInt ^ encryptKeyInt)) init++ } sign := passportKeyOp(tmp) sEnc := base64.StdEncoding.EncodeToString([]byte(sign)) return sEnc } func passportKeyOp(str string) string { key := "abcdefghijkl" encryptKey := Md5(key) // 加密的key init := 0 result := "" strPlus := []rune(str) strLen := len(strPlus) encryptKeyPlus := []rune(encryptKey) encryptKeyLen := len(encryptKeyPlus) for index := 0; index < strLen; index++ { if init == encryptKeyLen { init = 0 } result += string(rune(int(strPlus[index]) ^ int(encryptKeyPlus[init]))) init++ } return result } func decryptOp(str string) string { // 把空格替換為+號,+號在傳遞過程中變成了空格 str = strings.ReplaceAll(str, " ", "+") sDec, _ := base64.StdEncoding.DecodeString(str) str = passportKeyOp(string(sDec)) result := "" strPlus := []rune(str) strLen := len(strPlus) for index := 0; index < strLen; index++ { result += string(rune(int(strPlus[index]) ^ int(strPlus[index+1]))) index++ } return result } func main() { id := "123456" idStr := encryptOp(id) fmt.Println("idStr = ", idStr) fmt.Println("id = ", decryptOp(idStr)) }
感謝各位的閱讀,以上就是“php和go按位異結(jié)果有什么不同”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對php和go按位異結(jié)果有什么不同這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
標(biāo)題名稱:php和go按位異結(jié)果有什么不同
路徑分享:http://jinyejixie.com/article36/ggsjpg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作、手機(jī)網(wǎng)站建設(shè)、域名注冊、搜索引擎優(yōu)化、、微信公眾號
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)