2
votes
2answers
196 views

Python 3: Generate not all permutations, but all non-repetitive combinations of length r?

I'm trying to generate a lazily iterable collection of Vigenere cipher keys of length r. I'm aware of itertools and the permutations() method. However, this generates keys such as ABCD, ABCE, ABCF... ...
1
vote
3answers
1k views

Solve vigenere code without key - python

This is the problem I have to figure out: "A message has been encryption using Vigenere encryption method discussed in class, and its cipher text EQNVZ has been intercepted. Break the code. Assume ...