From 4f1e2b1782297ff3ae41aaacb8ef7decce5f02fd Mon Sep 17 00:00:00 2001 From: Luxferre Date: Mon, 24 Mar 2025 11:32:10 +0200 Subject: [PATCH] readme fix --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 915658f..6c0b7f2 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ message with DRACONDI. 1. Randomly choose the initial offset from 0 to 25. Write its corresponding letter in the KA1 alphabet as the first ciphertext letter. 2. For every plaintext letter, do the following: + 2.1. Locate the plaintext letter position in the KA1 alphabet. Locate the ciphertext position by moving (offset) letters to the right, wrapping around the alphabet if necessary. @@ -101,6 +102,7 @@ with DRACONDI. 1. Derive the initial offset from the first ciphertext letter in the KA1 alphabet. Discard the first ciphertext letter afterwards. 2. For every remaining ciphertext letter, do the following: + 2.1. Locate the ciphertext letter position in the KA1 alphabet. Locate the plaintext position by moving (offset) letters to the left, wrapping around the alphabet if necessary.