關於簡單的加密和解密演算法,簡單加密解密演算法

來源:互聯網
上載者:User

關於簡單的加密和解密演算法,簡單加密解密演算法

加密解密 最簡單的就是簡單的字串串連和運算,但是直接對字串操作比較麻煩,所以建議一般做法是先把string轉換為byte數組後再進行簡單的異或運算或者其他運算進行加密和解密,最終比對的都是string、


void Start()

    {
        string s = "sxasxasx時刻到那時小時額外2餓餓2221312312";
        string SS = Encode(s);
        Debug.Log(SS);
        string SSS = Decode(SS);
        Debug.Log(SSS);
        Debug.Log(SSS == s);


       
}
    public string Encode(string s)
    { 
        byte[] b=Encoding.UTF8.GetBytes(s);
        for (uint i = 0; i < b.Length; i++)
        {
            uint by = b[i];
            b[i] = (byte)(by ^ 2);//異或 也可以使用複雜的運算。0x3234
        }
        return Encoding.UTF8.GetString(b);
    }
    public string Decode(string s)
    {
        byte[] b = Encoding.UTF8.GetBytes(s);
        for (uint i = 0; i < b.Length; i++)
        {
            uint by = b[i];
            b[i] = (byte)(by ^ 2);//異或
        }
        return Encoding.UTF8.GetString(b);
    }

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.