https://github.com/rykerwilder/ceasar-salt-encryption
Ceasar salt encryption script.
https://github.com/rykerwilder/ceasar-salt-encryption
ceasar-cipher decryption encryption encryption-decryption
Last synced: 2 months ago
JSON representation
Ceasar salt encryption script.
- Host: GitHub
- URL: https://github.com/rykerwilder/ceasar-salt-encryption
- Owner: RykerWilder
- Created: 2025-04-04T22:31:05.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-04T23:04:01.000Z (2 months ago)
- Last Synced: 2025-04-04T23:25:47.550Z (2 months ago)
- Topics: ceasar-cipher, decryption, encryption, encryption-decryption
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caesar Cipher with Secret Key + Salt
An extension of the classic Caesar Cipher that improves security by introducing a secret numeric key and a random salt.
---
```python
plaintext = "HELLO"
key = 5
salt = "XQ3"
ciphertext = caesar_salt_encrypt(plaintext, key, salt)
print("Ciphertext:", ciphertext) # Output: "WMPAW"
```To see how the Caesar Salt cipher works with secret key see here [Ceasar Salt Cipher with secret key](https://github.com/RykerWilder/notes/blob/main/encryption/ceasar-key-salt.md)