Initial commit

This commit is contained in:
2025-08-10 08:09:46 -04:00
commit 9edfa5f379
8 changed files with 2050 additions and 0 deletions

22
manual_test.sh Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
echo "Manual OTP Test"
echo "==============="
# Generate a test pad
echo "Generating test pad..."
./otp generate demo 1
echo
# Create a test message file for encryption
echo "Creating test message..."
echo "This is a secret message for testing OTP encryption!" > test_message.txt
# Test encryption interactively
echo "Testing encryption (will prompt for input):"
echo "Please enter: This is a secret message for testing OTP encryption!"
./otp encrypt demo
echo
echo "Files created:"
ls -la demo.*