CIPHER | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

CIPHER

Hi I would like to make a fence (or zig zag) cipher in C using matrices of course but I don't have in mind how to do it a help?

6th Nov 2022, 10:09 AM
Elia Trotta
1 Answer
0
Never known such cipher (im not very good in encryption) but a fast look to wikipedia and i understood it. Anyway, if you want use matrices, an indea can be (for encription): - create a matrix r x c where r is the number of fence and c is the size of message/ r (rounded up). - fill the matrix with a 0 value - fill the matrix, from top to bottom by column, with message character by character the final encripted message coul be obtained by reading the matrix by rows ignoring the 0 values
6th Nov 2022, 11:23 AM
KrOW
KrOW - avatar