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); } ```