Version v0.2.76 - Fixed decrypt output - removed extra newline to output only the plaintext

This commit is contained in:
2025-08-14 11:46:40 -04:00
parent e35d94243e
commit 482687cb68
4 changed files with 1 additions and 3 deletions

2
otp.c
View File

@@ -1730,7 +1730,7 @@ int decrypt_text_silent(const char* pad_identifier, const char* encrypted_messag
plaintext[ciphertext_len] = '\0';
// Output only the decrypted text - no extra messages
printf("%s\n", plaintext);
printf("%s", plaintext);
// Cleanup
free(ciphertext);

View File

@@ -1 +0,0 @@
Testing updated files directory functionality

View File

@@ -1 +0,0 @@
Testing files directory functionality

Binary file not shown.