0

昨夜、同じ質問を投稿しましたが、コードの例が非常に貧弱でした。これにより、私の状況が理解しやすくなることを願っています。

OFB モードでヌル パディングを使用して 3DES を使用して暗号化されたメッセージを復号化する必要があります。

これは、Web から取得したコードを使用して復号化を試みる試みです。

暗号化されたメッセージ、キー、および IV がすべて正しいことが検証されます。

次のエラーが発生します。

暗号化エラーが発生しました: 指定されたキーは、このアルゴリズムに対して有効なサイズではありません。

他のすべてがコードに問題がないと仮定すると、暗号モードを変更してヌル パディング付きの OFB にするにはどうすればよいですか?

システムを使用して; System.Collections.Generic の使用; System.Text を使用します。

名前空間 _DESapp { システムを使用。System.Security.Cryptography の使用; System.Text を使用します。System.IO を使用します。

class TrippleDESCSPSample
{

    static void Main()
    {
        try
        {
            int discarded;
            byte[] encrypteddata = Convert.FromBase64String( "zbv67qbzN6pD2Uaog62u8WgZOcOz");
            byte[] key = Convert.FromBase64String( "wSQ90YI+lAauwVVSySAi8u0P");
            byte[] IV = HexEncoding.GetBytes("ac3834bfbda8eb07", out discarded);

            string decrypteddata = DecryptTextFromMemory( encrypteddata, key, IV);

            Console.ReadLine();

        }
        catch (Exception e)
        {
            Console.WriteLine(e.Message);
        }

    }

    public static string DecryptTextFromMemory(byte[] Data, byte[] Key, byte[] IV)
    {
        try
        {
            // Create a new MemoryStream using the passed 
            // array of encrypted data.
            MemoryStream msDecrypt = new MemoryStream(Data);

            // Create a CryptoStream using the MemoryStream 
            // and the passed key and initialization vector (IV).

            ICryptoTransform des = new TripleDESCryptoServiceProvider().CreateDecryptor(Key, IV);

            CryptoStream csDecrypt = new CryptoStream(msDecrypt, des, CryptoStreamMode.Read);
            //CryptoStream csDecrypt = new CryptoStream(msDecrypt,
            //    new TripleDESCryptoServiceProvider().CreateDecryptor(Key, IV),
            //    CryptoStreamMode.Read);

            // Create buffer to hold the decrypted data.
            byte[] fromEncrypt = new byte[Data.Length];

            // Read the decrypted data out of the crypto stream
            // and place it into the temporary buffer.
            csDecrypt.Read(fromEncrypt, 0, fromEncrypt.Length);

            //Convert the buffer into a string and return it.
            return new ASCIIEncoding().GetString(fromEncrypt);
        }
        catch (CryptographicException e)
        {
            Console.WriteLine("A Cryptographic error occurred: {0}", e.Message);
            return null;
        }
    }


    public class HexEncoding
    {
        public HexEncoding()
        {
            //
            // TODO: Add constructor logic here
            //
        }

        public static byte[] GetBytes(string hexString, out int discarded)
        {
            discarded = 0;
            string newString = "";
            char c;
            // remove all none A-F, 0-9, characters
            for (int i = 0; i < hexString.Length; i++)
            {
                c = hexString[i];
                if (IsHexDigit(c))
                    newString += c;
                else
                    discarded++;
            }
            // if odd number of characters, discard last character
            if (newString.Length % 2 != 0)
            {
                discarded++;
                newString = newString.Substring(0, newString.Length - 1);
            }

            int byteLength = newString.Length / 2;
            byte[] bytes = new byte[byteLength];
            string hex;
            int j = 0;
            for (int i = 0; i < bytes.Length; i++)
            {
                hex = new String(new Char[] { newString[j], newString[j + 1] });
                bytes[i] = HexToByte(hex);
                j = j + 2;
            }
            return bytes;
        }

        public static bool IsHexDigit(Char c)
        {
            int numChar;
            int numA = Convert.ToInt32('A');
            int num1 = Convert.ToInt32('0');
            c = Char.ToUpper(c);
            numChar = Convert.ToInt32(c);
            if (numChar >= numA && numChar < (numA + 6))
                return true;
            if (numChar >= num1 && numChar < (num1 + 10))
                return true;
            return false;
        }

        private static byte HexToByte(string hex)
        {
            if (hex.Length > 2 || hex.Length <= 0)
                throw new ArgumentException("hex must be 1 or 2 characters in length");
            byte newByte = byte.Parse(hex, System.Globalization.NumberStyles.HexNumber);
            return newByte;
        }

    }

}

}

4

0 に答える 0