복호화

it/programming

[C++] 비제네르(Vigenere) 암ㆍ복호화 프로그램

#include #include #include void space(){system("cls");printf("\n\n\n\t\t");} void main() { int i=0, j=0, keys=0, strs=0, select=0; char str[100] ={0,}; char key[100]={0,}; space(); printf("평문 또는 암호문을 입력하세요 .\n\t> "); gets(str); space(); printf("암호문은 1번 복호는 2번 : "); scanf("%d",&select); space(); printf("키 값입력 : "); scanf("%s",key); strs= strlen(str); keys= strlen(key); for(i=0;i='a')&&(str[i]

it/programming

[C++] ASCII 코드를 이용한 간단한 암호화, 복호화

파일 : #include #include #include char ch; void encrypt(int key); void decoding(int key); void main() { main: int key; printf("\n\tKEY 값을 입력해주세요(정수값) : "); scanf("%d",&key); if(key>25||key=97&&ch122) ch=(ch+key)-26; else ch+=key; } else if(ch>=65&&ch90) ch=(ch+key)-26; else ch+=key; } else continue; putch(ch); } system("cls"); printf("프로그램을 종료합니다.\n"); } void decoding(int key) { system("cls"); pri..

반응형
훈솔
'복호화' 태그의 글 목록