Is there a function for inverting the 'reshape' command?
显示 更早的评论
For my rail fence cipher, i obtain the correct output. But am wondering if there is a simple command to decipher the output?
function cipher_text = rail_fence_cipher(origionalText,key)
origionalText = [origionalText,origionalText(1:(key-mod(length(origionalText),key)))];
cipher_text = reshape(origionalText,key,[]);
end
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Encryption / Cryptography 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!