Draft
Poly Encryption
Description:
In this kata, you need to code a simple polyalphabetic encryption tool. Given is the method Encrypt, which has two parameters. At first, there is the string text, which includes the text we want to encrypt and the string key which we need to encrypt/decrypt our text.
If the key is smaller than the text, repeat the key.
[Attention] This is only a beta, so it could be possible that there are some bugs.
Here is a description: https://en.wikipedia.org/wiki/Polyalphabetic_cipher
You start with the following method:
public static string Encrypt(string text, string key)
{
}
Strings
Similar Kata:
Stats:
Created | Mar 20, 2020 |
Warriors Trained | 31 |
Total Skips | 0 |
Total Code Submissions | 90 |
Total Times Completed | 9 |
C# Completions | 9 |
Total Stars | 1 |
% of votes with a positive feedback rating | 43% of 7 |
Total "Very Satisfied" Votes | 2 |
Total "Somewhat Satisfied" Votes | 2 |
Total "Not Satisfied" Votes | 3 |
Total Rank Assessments | 5 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 7 kyu |
Lowest Assessed Rank | 8 kyu |