1 / 12

Kriptografi & Steganografi

Kriptografi & Steganografi. "POLYBIUS'UN DAMA TAHTASI". Elemanları harfler olan 5*5 lik bir matristen oluşmaktaydı . SİSTEM: Alfabe sırayla matrisin sıralarına yazılır ve her harfi belirleyen iki rakam bulunduğu satırı , ikinci rakam bulunduğu sütunu temsil eder. A=11, B=12.

ranger
Download Presentation

Kriptografi & Steganografi

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Kriptografi & Steganografi

  2. "POLYBIUS'UN DAMA TAHTASI" Elemanları harfler olan 5*5 lik bir matristen oluşmaktaydı.SİSTEM: Alfabe sırayla matrisin sıralarına yazılır ve her harfi belirleyen iki rakam bulunduğu satırı, ikinci rakam bulunduğu sütunu temsil eder. A=11, B=12

  3. "44433424332444113354" TRMILITARY

  4. Uygulama Herhangi bir görsel programlama dilinde kodlayınız! Mesajı yazıldığında kriptosu, kripto yazıldığında mesaj çıkartılabilecek!

  5. Sezar şifreleme

  6. Sezar şifreleme algoritması

  7. Uygulama • Sezar şifreleme algoritmasını bildiğiniz bir dilde kodlayınız!

  8. RSA Algoritması

  9. Rsa örnek

  10. Araştırma konuları • Vigenere şifresi • Vernam şifresi • Sık kullanılan RSA, DES ve AES, DiffieHellmanalgoritmaları kodlayınız. Çalışma mantıklarını kavrayarak birbirlerinden farklılıklarını raporlayınız.

  11. Steganografi – uygulama matlab • %kaynak mathworks • clc; • clearall; • closeall; • cover= input('Entercoverimage: ', 's'); • message = input('Entermessageimage name: ', 's'); • x = imread(cover); % covermessage • y = imread(message); % messageimage • n = input('Entertheno of LSB bitsto be subsituted- '); • S = uint8(bitor(bitand(x,bitcmp(2^n-1,8)),bitshift(y,n-8))); %Stego • E = uint8(bitand(255,bitshift(S,8-n))); %Extracted • origImg= double(y); %messageimage • distImg = double(E); %extractedimage • [M N] = size(origImg); • distImg1=imresize(distImg,[M N]); • error = origImg - distImg1; • MSE = sum(sum(error .* error)) / (M * N); • if(MSE > 0) • PSNR = 10*log10(M*N./MSE); • else • PSNR = 99; • end • disp('PSNR of messageimagetoextractedimage is') • disp(abs(PSNR)) • disp('MSE is') • disp(abs(MSE)) • figure(1),imshow(x);title('1.Cover image') • figure(2),imshow(y);title('2.Message to be hide') • figure(3),imshow((abs(S)),[]);title('3.Stegnographic image') • figure(4),imshow(real(E),[]); title('4.Extracted image') • figure(5),imhist(x); title('Histogram of coverimage') • figure(6),imhist(S); title('Histogram of transformedstegoimage')

  12. Steganografi- uygulama c# • steganografi.zip şeklinde siteden paylaşılan uygulama incelenebilir.

More Related