Version v0.3.34 - Fixed usb space reporting

This commit is contained in:
2025-12-20 09:25:38 -04:00
parent f3599fef37
commit cf52274c2c
4 changed files with 74 additions and 27 deletions

View File

@@ -2,7 +2,7 @@
## Introduction
A secure one-time pad (OTP) cipher implementation in C.
A secure one-time pad (OTP) cipher implementation in C99.
## Why One-Time Pads
@@ -58,20 +58,19 @@ One-time pads can be trivially encrypted and decrypted using pencil and paper, m
### Download Pre-Built Binaries
**[Download Current Linux x86](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.32/otp-v0.3.32-linux-x86_64)**
**[Download Current Linux x86](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.33/otp-v0.3.33-linux-x86_64)**
**[Download Current Raspberry Pi 64](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.32/otp-v0.3.32-linux-arm64)**
**[Download Current Raspberry Pi 64](https://git.laantungir.net/laantungir/otp/releases/download/v0.3.33/otp-v0.3.33-linux-arm64)**
After downloading:
```bash
# Make executable and rename for convenience
chmod +x otp-v0.3.32-linux-x86_64
mv otp-v0.3.32-linux-x86_64 otp
# Rename for convenience, then make executable
mv otp-v0.3.33-linux-x86_64 otp
chmod +x otp
# Run it
./otp
```
### First Steps
1. **Generate your first pad:**
@@ -93,11 +92,6 @@ mv otp-v0.3.32-linux-x86_64 otp
## Building from Source
### Prerequisites