Baseline: Ausgangszustand vor Modularisierung

Erster Commit des bestehenden monolithischen WinForms-Copytraders,
inklusive der Alt-Backups (*.bak), damit diese dauerhaft in der
Historie rekonstruierbar bleiben. Threema-Lib unter libs/ wurde
vendored (nested .git entfernt).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
bergm
2026-07-01 13:16:16 +02:00
co-authored by Claude Opus 4.8
commit 475d396f80
147 changed files with 25455 additions and 0 deletions
@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IcgSoftware.Threema.CoreMsgApi
{
class MessageId
{
public const int MESSAGE_ID_LEN = 8;
private readonly byte[] messageId;
public MessageId(byte[] messageId)
{
if (messageId.Length != MESSAGE_ID_LEN)
{
throw new ArgumentException("Bad message ID length");
}
this.messageId = messageId;
}
public MessageId(byte[] data, int offset)
{
if ((offset + MESSAGE_ID_LEN) > data.Length)
{
throw new ArgumentException("Bad message ID buffer length");
}
this.messageId = new byte[MESSAGE_ID_LEN];
//System.arraycopy(data, offset, this.messageId, 0, MESSAGE_ID_LEN);
data.Skip(offset).Take(MESSAGE_ID_LEN).ToArray().CopyTo(this.messageId, 0);
}
public byte[] GetMessageId
{
get { return messageId; }
}
public override string ToString() {
return DataUtils.ByteArrayToHexString(messageId);
}
}
}