C/C++ Dosya Şifreleme

X

xr4zz3rs

C++ ile bu kod sayesinde dosya şifreleme yapabilirsiniz.



C++:
#include <stdio.h>

#include <stdlib.h>



int main(vo-id) {

    char DosyaAdi[20],ch;

    FILE *Dosya1,*Dosya2;

    printf("Şifrelenecek Dosyayı Giriniz.");

    scanf("%s",DosyaAdi);

    Dosya1=fopen(DosyaAdi,"r");

    Dosya2=fopen("ŞifrelenenDosya.txt","w");

    while(1) {

        ch=fgetc(Dosya1);

        if(ch==EOF) {

            break;

        }

        ch+=100;

        fputc(ch,Dosya2);

    }

    fclose(Dosya1);

    fclose(Dosya2);



    return 0;

}
 
G

Gürkan Girgin

Confirmed Memb.
Joined
Aug 4, 2019
Messages
112
Reaction score
15
Saol artıkizlediğim ve yüklediğim şeyleri velim görmeyecek misss ???
 
M

Murat

Confirmed Memb.
Joined
Jul 31, 2019
Messages
98
Reaction score
20
Eyvallah Dosyayı şifrelersem kimse göremez :D
 
M

Matr4k3

LOW
Banned Member
Joined
Aug 20, 2019
Messages
32
Reaction score
8
Dosya1=fopen(DosyaAdi,"r");
C++ ile bu kod sayesinde dosya şifreleme yapabilirsiniz.



C++:
#include <stdio.h>

#include <stdlib.h>



int main(vo-id) {

    char DosyaAdi[20],ch;

    FILE *Dosya1,*Dosya2;

    printf("Şifrelenecek Dosyayı Giriniz.");

    scanf("%s",DosyaAdi);

    Dosya1=fopen(DosyaAdi,"r");

    Dosya2=fopen("ŞifrelenenDosya.txt","w");

    while(1) {

        ch=fgetc(Dosya1);

        if(ch==EOF) {

            break;

        }

        ch+=100;

        fputc(ch,Dosya2);

    }

    fclose(Dosya1);

    fclose(Dosya2);



    return 0;

}
HELAL YARARLI !
 
SPAM IS FORBIDDEN!
  • SPAMMERS ARE BANNED FROM THE FORUM AND CANNOT USE ANY OF THE CHEATS
  • For example: thanks, thx, very good, asdqwe, working, ty and so on!
  • For example: Writing the same message over and over. thanks, thx and so on!
  • Copying and copying someone else's message is prohibited.
  • It is forbidden to send messages to increase the number of comments on threads that you have no knowledge of.
  • Write your own opinion when commenting!
  • If you see spam message, please let us know with the REPORT button!

Tema düzenleyici

Top Bottom