Community Profile

photo

Md. Atiqur Rahman


Last seen: 1年以上 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1

バッジを表示

Feeds

表示方法

回答済み
Caesar cipher matlab code
%% To whom it may concern Plaintext= input('Plaintext: ','s') Shift= input('Shift: ') Output = Plaintext+Shift; r=Output-26;...

1年以上 前 | 0

| 採用済み

質問


Caesar cipher matlab code
Can anyone write a very basic code for caesar cipher that shifts input characters by 5 place?

1年以上 前 | 2 件の回答 | 0

2

回答

質問


how can I find the values 88,89,90 and replace them as 65,66,67 using a for loop?
Generator = randi([65,90],[1,10])

1年以上 前 | 1 件の回答 | 0

1

回答

質問


Need to create a for loop for this problem
clear all; clc; Key = randi([0,1],[1,2048]); %Key(randperm(size(Key,2))) Plaintext = randi([0,1],[1,256]) %Dividing PLain...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How can I create a 16 round for loop in this problem?
% I need different "In" on every stage and key in each stage would be ciphertext of previous stage clear all; clc; Key = ...

1年以上 前 | 1 件の回答 | 0

1

回答