From 62f62e7bd5945c0e57c1ddb6691dcaf44f616a25 Mon Sep 17 00:00:00 2001 From: SecondJochen Date: Fri, 3 Jul 2026 08:16:01 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e0a9e44..ca341ef 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ int main() { core::Decryptor decryptor(privateKey); const std::string message = "hello"; - std::vector ciphertext = encryptor.encrypt(message); + ByteArray ciphertext = encryptor.encrypt(message); std::string plaintext = decryptor.decrypt(ciphertext); } ```