diff --git a/sw/examples/service_aes/client/main.cpp b/sw/examples/service_aes/client/main.cpp index 3bb8b06..0d30ad2 100644 --- a/sw/examples/service_aes/client/main.cpp +++ b/sw/examples/service_aes/client/main.cpp @@ -67,6 +67,6 @@ int main(int argc, char *argv[]) } } - std::cout << "Check returns: " << k << std::endl; + std::cout << (k ? "Success: cipher text matches test vectors!" : "Error: found cipher text that doesn't match the test vector") << std::endl; return (EXIT_SUCCESS); }