Tool to decrypt/encrypt with Vigenere multiplication. Vigenere Multiplicative Cipher is a Vigenere variant which uses a key, but replaces an addition by a multiplication.
Vigenere Multiplicative Cipher - dCode
Tag(s) : Poly-Alphabetic Cipher
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Vigenere Multiplication Encryption uses a numeric key (some numbers) and a numeric message (use an alphanumeric substitution A1Z26, or ASCII code for example).
Example: Encode 4,3,15,4,5 (for DCODE) with the key 11,5,25 (for KEY)
Take the first number of the message and the first number of the key and multiply them, the result is the product's value. Same for the next numbers of the message and the key.
If the key length is inferior of the text lenght, start over the key.
Example: Calculate 4*11=44, 3*5=15, 15*25=375, 4*11=44, 5*5=25 to get the cipher message 44,15,375,44,25
Plain numbers | 4 | 3 | 15 | 4 | 5 |
Key numbers | 11 | 5 | 25 | 11 | 5 |
Cipher numbers | 44 | 15 | 375 | 44 | 25 |
Decryption requires a key and a numeric text.
Example: The ciphered message is 44,15,375,44,25 and the key 11,5,25 (for KEY)
Divide the first number of the message by the second number of the key. Write the result (which must be integer). Same for the next numbers of the message and the key.
Example: 44/11=4, 15/5=3 etc. The original plain text is 4,3,15,4,5 (DCODE).
The message is made of numbers with 1 to 5 digits, none is prime.
Vigenere multiplication can be cracked by trying to find the length for which GCD of values are the greatest.
dCode retains ownership of the "Vigenere Multiplicative Cipher" source code. Any algorithm for the "Vigenere Multiplicative Cipher" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Vigenere Multiplicative Cipher" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Vigenere Multiplicative Cipher" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Vigenere Multiplicative Cipher" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Vigenere Multiplicative Cipher on dCode.fr [online website], retrieved on 2025-04-16,