<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><title>MagicLen</title><link>https://magiclen.org/tag/crypto/feed</link><description>多元化原創文章，內容包羅萬象，有程式語言、網站應用、軟體介紹、硬體介紹、作業系統、旅行遊記、專題採訪、益智問題、文學創作，以及作者們的知識分享和作品分享。</description><language>zh-TW</language><lastBuildDate>Thu, 16 Apr 2026 18:28:29 +0000</lastBuildDate><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>8</sy:updateFrequency><sy:updateBase>1970-01-01T00:00+00:00</sy:updateBase><item><title>短加密(ShortCrypt)網頁版 將任意資料加密成另一組看似非常隨機且簡短的資料</title><link>https://magiclen.org/short-crypt-tool</link><description><![CDATA[    <img src="https://magiclen.org/wp-content/uploads/2019/02/shot-1-220x162.png" srcset="https://magiclen.org/wp-content/uploads/2019/02/shot-1-220x162.png 1x, https://magiclen.org/wp-content/uploads/2019/02/shot-1-440x324.png 2x, https://magiclen.org/wp-content/uploads/2019/02/shot-1-660x486.png 3x" alt="">
在傳遞資料的時候，我們可能會需要隱藏敏感的資料，讓一般使用者不會直接看到，例如流水序號、密碼等。這樣的資料通常都很小，可能只有數個位元組，但如果使用AES/DES加密，密文(也就是加密後的資料)都至少有16個位元組以上！實在不太適合用來加密這樣的少量資料。]]></description><category>作品分享</category><category>網站應用</category><category>加密</category><category>ShortCrypt</category><category>雲端工具</category><guid>https://magiclen.org/short-crypt-tool</guid><pubDate>Wed, 27 Feb 2019 12:00:32 +0800</pubDate><dc:creator>Magic Len</dc:creator></item><item><title>ShortCrypt─在Rust和網頁瀏覽器上實現資料加解密，並且能夠互通的函式庫</title><link>https://magiclen.org/short-crypt</link><description><![CDATA[    <img src="https://magiclen.org/wp-content/uploads/2018/04/rust-220x162.png" srcset="https://magiclen.org/wp-content/uploads/2018/04/rust-220x162.png 1x, https://magiclen.org/wp-content/uploads/2018/04/rust-440x324.png 2x, https://magiclen.org/wp-content/uploads/2018/04/rust-660x486.png 3x" alt="">
在開發程式的時候，我們可能會需要隱藏敏感的資料，讓一般使用者不會直接看到，例如流水序號、密碼、網頁Cookie等。這樣的資料通常都很小，可能只有數個位元組，但如果使用AES/DES加密，密文(也就是加密後的資料)都至少有16個位元組以上！實在不太適合用來加密這樣的少量資料。]]></description><category>研究分享</category><category>Rust</category><category>JavaScript</category><category>JavaScript</category><category>Rust</category><category>加密</category><category>ShortCrypt</category><category>TypeScript</category><guid>https://magiclen.org/short-crypt</guid><pubDate>Sat, 17 Nov 2018 20:00:39 +0800</pubDate><dc:creator>Magic Len</dc:creator></item><item><title>Crypt Tool 文字和檔案加密工具</title><link>https://magiclen.org/crypt-tool</link><description><![CDATA[    <img src="https://magiclen.org/wp-content/uploads/2016/12/shot-07-220x162.png" srcset="https://magiclen.org/wp-content/uploads/2016/12/shot-07-220x162.png 1x, https://magiclen.org/wp-content/uploads/2016/12/shot-07-440x324.png 2x, https://magiclen.org/wp-content/uploads/2016/12/shot-07-660x486.png 3x" alt="">
在傳遞資料的過程中，總是不想要讓人家一眼就看明白你所傳遞的文字訊息。隱藏文字訊息的方式有很多種，如果沒有解碼還原的需求，只需進行雜湊(Hash)運算即可。但若有還原的需求，則可能要使用到某些著名的加密演算法，例如String Hider、DES、AES等等。只要加密與解密的兩方協調好要使用的加密方式以及密碼，就可以完成訊息的加密傳輸。Crypt Tool提供了圖形介面，讓使用者可以使用DES(64...]]></description><category>作品分享</category><category>軟體介紹</category><category>Java</category><category>Crypt Tool</category><category>Java</category><category>MagicCrypt</category><category>加密</category><guid>https://magiclen.org/crypt-tool</guid><pubDate>Sat, 31 Dec 2016 19:22:00 +0800</pubDate><dc:creator>Magic Len</dc:creator></item><item><title>MagicCrypt─在Java、Android、PHP、Node.js、Rust實現DES/AES加解密，並且能夠互通的函式庫</title><link>https://magiclen.org/aes</link><description><![CDATA[    <img src="https://magiclen.org/wp-content/uploads/2016/02/java-220x162.png" srcset="https://magiclen.org/wp-content/uploads/2016/02/java-220x162.png 1x, https://magiclen.org/wp-content/uploads/2016/02/java-440x324.png 2x, https://magiclen.org/wp-content/uploads/2016/02/java-660x486.png 3x" alt="">
在使用網路傳輸資料的過程中，即便使用了SSL(Secure Sockets Layer)或是TLS(Transport Layer Security)，傳輸內容還是有可能會遭到破解(如中間人攻擊, MITM)。當傳輸的資料遭到惡意的第三方竊聽，並且成功取得明文(也就是原始資料)，那下場就很慘了。如果要讓傳輸過程更安全的話，那就自行把要傳遞的資料用自己的方式先加密吧！AES(Advanced Enc...]]></description><category>研究分享</category><category>Android</category><category>Java</category><category>PHP</category><category>Rust</category><category>JavaScript</category><category>AES</category><category>Android</category><category>DES</category><category>Java</category><category>JavaScript</category><category>MagicCrypt</category><category>PHP</category><category>node.js</category><category>Rust</category><category>加密</category><category>TypeScript</category><guid>https://magiclen.org/aes</guid><pubDate>Mon, 13 Oct 2014 13:59:02 +0800</pubDate><dc:creator>Magic Len</dc:creator></item><item><title>String Hider 隱藏任意的字串</title><link>https://magiclen.org/string-hider</link><description><![CDATA[    <img src="https://magiclen.org/wp-content/uploads/2014/05/shot-01-220x162.png" srcset="https://magiclen.org/wp-content/uploads/2014/05/shot-01-220x162.png 1x, https://magiclen.org/wp-content/uploads/2014/05/shot-01-440x324.png 2x, https://magiclen.org/wp-content/uploads/2014/05/shot-01-660x486.png 3x" alt="">
在傳遞資料的過程中，總是不想要讓人家一眼就看明白你所傳遞的文字訊息。隱藏文字訊息的方式有很多種，如果沒有解碼還原的需求，只需進行雜湊(Hash)運算即可。但若有還原的需求，則可能要使用到某些著名的加密演算法，例如DES、AES等等，但這些演算法又很複雜，需要加解密鑰又需要初始向量，還有一堆不同的長度，若兩方沒有事先講好如何加解密，那要還原出原本的字串是很困難的。如果只是想要隱藏一些不太想讓別人一眼...]]></description><category>作品分享</category><category>軟體介紹</category><category>Java</category><category>Java</category><category>MagicStringHider</category><category>String Hider</category><category>StringHiderFrame</category><category>加密</category><guid>https://magiclen.org/string-hider</guid><pubDate>Sat, 3 May 2014 00:05:42 +0800</pubDate><dc:creator>Magic Len</dc:creator></item></channel></rss>