window Resize

html 測試 左入右出

html 測試 上入下出

html 測試 單入單出

html 測試 左單右單

tt
顯示具有 管理員 小程式 加密解密 標籤的文章。 顯示所有文章
顯示具有 管理員 小程式 加密解密 標籤的文章。 顯示所有文章

Javascript 字串 或 文章 編碼加密 String or article encoding and encryption 1

Javascript 字串 或 文章 編碼加密
String or article encoding and encryption 1

密碼/password

原文 字串/文章 Original string
00
#html #html #script #字串加密 #字串解密 #decode #encode #密碼 password #密碼錯誤 #字串加密編碼 String encryption #加密後字串解碼 String decoding after encryption

Javascript 字串 或 文章 編碼加密 String or article encoding and encryption 2

Javascript 字串 或 文章 編碼加密
String or article encoding and encryption 2

<script src='https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js'></script>
第三方提供 function。
 
CryptoJS.AES.encrypt(str,key).toString() 
           功能 字串/文章 編碼加密,
           傳回 原始字串進行編碼加密,
           str = 需要 編碼加密 字串/文章,
           key = 密碼。

CryptoJS.AES.decrypt(str,key).toString(CryptoJS.enc.Utf8)
           功能 將加密編碼還原為 字串/文章,
           傳回 加密編碼還原為 字串/文章,
           str = 加密後編碼,
           key = 密碼。     
00
#html #html #script #字串加密 #字串解密 #decode #encode #密碼 password #密碼錯誤 #字串加密編碼 String encryption #加密後字串解碼 String decoding after encryption