photo

Md. Atiqur Rahman


Last seen: etwa 2 Jahre vor Aktiv seit 2022

Followers: 0   Following: 0

Statistik

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

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

etwa 2 Jahre vor | 0

| akzeptiert

Frage


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

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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])

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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 = ...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort