Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f3976bc07 |
@@ -58,14 +58,14 @@ One-time pads can be trivially encrypted and decrypted using pencil and paper, m
|
|||||||
|
|
||||||
### Download Pre-Built Binaries
|
### Download Pre-Built Binaries
|
||||||
|
|
||||||
**[Download Current Linux x86](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.42/otp-v0.3.42-linux-x86_64)**
|
**[Download Current Linux x86](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.43/otp-v0.3.43-linux-x86_64)**
|
||||||
|
|
||||||
**[Download Current Raspberry Pi 64](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.42/otp-v0.3.42-linux-arm64)**
|
**[Download Current Raspberry Pi 64](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.43/otp-v0.3.43-linux-arm64)**
|
||||||
|
|
||||||
After downloading:
|
After downloading:
|
||||||
```bash
|
```bash
|
||||||
# Rename for convenience, then make executable
|
# Rename for convenience, then make executable
|
||||||
mv otp-v0.3.42-linux-x86_64 otp
|
mv otp-v0.3.43-linux-x86_64 otp
|
||||||
chmod +x otp
|
chmod +x otp
|
||||||
|
|
||||||
# Run it
|
# Run it
|
||||||
|
|||||||
38
src/crypto.c
38
src/crypto.c
@@ -587,36 +587,14 @@ int universal_decrypt(const char* input_data, const char* output_target, decrypt
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate pad integrity
|
// Pad integrity validation disabled for performance
|
||||||
int integrity_result = validate_pad_integrity(pad_path, stored_chksum);
|
// The checksum is already verified by matching the filename
|
||||||
if (integrity_result == 3) {
|
// If you need to verify pad integrity, the pad file would need to be read entirely
|
||||||
if (mode == DECRYPT_MODE_SILENT) {
|
// which is very slow for large pads (multi-GB files)
|
||||||
fprintf(stderr, "Error: Pad integrity check failed!\n");
|
|
||||||
return 1;
|
// Skip integrity check - trust the filename checksum
|
||||||
} else if (mode == DECRYPT_MODE_INTERACTIVE) {
|
if (mode == DECRYPT_MODE_INTERACTIVE || mode == DECRYPT_MODE_FILE_TO_TEXT) {
|
||||||
printf("Warning: Pad integrity check failed!\n");
|
printf("Using pad: %s\n", stored_chksum);
|
||||||
printf("Expected: %s\n", stored_chksum);
|
|
||||||
printf("Continue anyway? (y/N): ");
|
|
||||||
fflush(stdout);
|
|
||||||
|
|
||||||
char response[10];
|
|
||||||
if (fgets(response, sizeof(response), stdin) == NULL ||
|
|
||||||
(response[0] != 'y' && response[0] != 'Y')) {
|
|
||||||
printf("Decryption aborted.\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (integrity_result != 0) {
|
|
||||||
if (mode == DECRYPT_MODE_SILENT) {
|
|
||||||
fprintf(stderr, "Error: Cannot verify pad integrity\n");
|
|
||||||
} else {
|
|
||||||
printf("Error: Cannot verify pad integrity\n");
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
} else {
|
|
||||||
if (mode == DECRYPT_MODE_INTERACTIVE || mode == DECRYPT_MODE_FILE_TO_TEXT) {
|
|
||||||
printf("Pad integrity: VERIFIED\n");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Decode base64 ciphertext
|
// Decode base64 ciphertext
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
// Version - Updated automatically by build.sh
|
// Version - Updated automatically by build.sh
|
||||||
#define OTP_VERSION "v0.3.42"
|
#define OTP_VERSION "v0.3.43"
|
||||||
|
|
||||||
// Constants
|
// Constants
|
||||||
#define MAX_INPUT_SIZE 4096
|
#define MAX_INPUT_SIZE 4096
|
||||||
|
|||||||
Reference in New Issue
Block a user