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:

More By Author:

Check out these other kata created by Timm3D

Stats:

CreatedMar 20, 2020
Warriors Trained31
Total Skips0
Total Code Submissions90
Total Times Completed9
C# Completions9
Total Stars1
% of votes with a positive feedback rating43% of 7
Total "Very Satisfied" Votes2
Total "Somewhat Satisfied" Votes2
Total "Not Satisfied" Votes3
Total Rank Assessments5
Average Assessed Rank
7 kyu
Highest Assessed Rank
7 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • Timm3D Avatar
Ad