0

TCP 接続を介して送信するデータを暗号化しようとしていますが、CryptoStream.

ストリームを設定するクラスは次のとおりです。

public class SecureCommunication
{
    public SecureCommunication(TcpClient client, byte[] key, byte[] iv)
    {
        _client = client;

        _netStream = _client.GetStream();

        var rijndael = new RijndaelManaged();
        _cryptoReader = new CryptoStream(_netStream, 
            rijndael.CreateEncryptor(key, iv), CryptoStreamMode.Read);
        _cryptoWriter = new CryptoStream(_netStream, 
            rijndael.CreateEncryptor(key, iv), CryptoStreamMode.Write);

        _reader = new StreamReader(_cryptoReader);
        _writer = new StreamWriter(_cryptoWriter);
    }

    public string Receive()
    {
        return _reader.ReadLine();
    }

    public void Send(string buffer)
    {
        _writer.WriteLine(buffer);
        _writer.Flush();
    }

    ...

キーと初期ベクトル:

byte[] iv = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 };
byte[] key = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 };

私のテストクライアントプログラムで私は呼び出します

var client = new TcpClient("xxx.xxx.xxx.xxx", 12345);
var communication = new SecureTcpCommunication(client, key, iv);
communication.Send("Test message");

そして、私のサーバーで私は呼び出します:

var serverSocket = new TcpListener(IPAddress.Any, tcpPort);
var client = serverSocket.AcceptTcpClient();
var communication = new SecureTcpCommunication(client, key, iv);
Console.WriteLine($"Received message: {communication.Receive()}");

ただし、アプリケーションはブロックされcommunication.Receive、決して終了しません。ここで何が間違っていますか?私はそれが本当に単純なもののように感じます..

4

1 に答える 1