-1

次の方法を使用して、C#.Net のアプリケーションで暗号化された文字列を復号化したい:

      public static class clsEncryptions
{
    public static string GetKey()
    {
        var key = new { key = "MyKey" };
        return key.key;
    }

    public static string Encrypt(this string EncryptString)
    {
        if (EncryptString == string.Empty)
            return string.Empty;
        byte[] clearBytes =
          System.Text.Encoding.Unicode.GetBytes(EncryptString);
        PasswordDeriveBytes pdb = new PasswordDeriveBytes(GetKey(),
            new byte[] {0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 
        0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76});

        MemoryStream ms = new MemoryStream();
        Rijndael alg = Rijndael.Create();
        alg.Key = pdb.GetBytes(32);
        alg.IV = pdb.GetBytes(16);
        CryptoStream cs = new CryptoStream(ms, alg.CreateEncryptor(),CryptoStreamMode.Write);
        cs.Write(clearBytes, 0, clearBytes.Length);
        cs.Close();
        return Convert.ToBase64String(ms.ToArray());
    }


    public static string Decrypt(this string DecryptString)
    {
        if (DecryptString == string.Empty)
            return string.Empty;
        byte[] cipherBytes = Convert.FromBase64String(DecryptString);
        PasswordDeriveBytes pdb = new PasswordDeriveBytes(GetKey(),
                        new byte[] {0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 
        0x64, 0x76, 0x65, 0x64, 0x65, 0x76});
        MemoryStream ms = new MemoryStream();
        Rijndael alg = Rijndael.Create();
        alg.Key = pdb.GetBytes(32);
        alg.IV = pdb.GetBytes(16);
        CryptoStream cs = new CryptoStream(ms, alg.CreateDecryptor(), CryptoStreamMode.Write);
        cs.Write(cipherBytes, 0, cipherBytes.Length);
        cs.Close();
        return System.Text.Encoding.Unicode.GetString(ms.ToArray());
    }
}

復号化ロジックを VC++ (MFC プロジェクト) に変換して、VC++ アプリケーションで暗号化されたファイルを読み取れるようにしてください。

4

1 に答える 1

0

それらを見てみましたか

  1. http://www.cryptopp.com/ これはあなたを助ける C++ 暗号化ライブラリです。
  2. http://pocoproject.org/ これは、必要な暗号化クラスを持つ C++ フレームワークです。

私のアドバイスは、cryptopを使用してアプリケーションのサイズを小さくすることですが、pocoはコードの記述が簡単で、静的リンクでより大きなexeサイズを生成するため、これは正しくない可能性があります。

于 2013-05-23T09:18:23.260 に答える