-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecryptorKenekTopian96.cpp
92 lines (80 loc) · 1.61 KB
/
decryptorKenekTopian96.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <stdio.h> // buat semua library
#include <string.h>
#include <windows.h>
#include <stdlib.h>
void decrypt(char ini_pass[]);
void encrypt(char ini_pass[]);
void menu(int pilih,char ini_pass[]);
void menu_encrypt(char ini_pass[]);
void menu_decrypt(char ini_pass[]);
int main()
{
char pass[50];
int choose;
puts("Decryptor Kenektopian 96 BUKAN 69 ");
puts("===================================");
puts("Pilih Menu :");
menu(choose,pass);
printf("hasil : %s",pass);
puts("");
system("pause");
return 0;
}
void encrypt(char ini_pass[])
{
for(int i = 0; i<strlen(ini_pass); i++)
{
ini_pass[i] = ini_pass[i] + 6;
}
// printf("%d\n",strlen(ini_pass));
}
void decrypt(char ini_pass[])
{
for(int i = 0 ; i<strlen(ini_pass); i++)
{
ini_pass[i] = ini_pass[i] - 6;
}
// printf("%d\n",strlen(ini_pass));
}
void menu(int pilih, char ini_pass[])
{
puts("1. Encrypt tulisan");
puts("2. Decrypt tulisan");
puts("3. Exit");
printf(">>");
scanf("%d",&pilih);
switch(pilih)
{
case 1:
system("cls");
menu_encrypt(ini_pass);
break;
case 2:
system("cls");
menu_decrypt(ini_pass);
break;
default:
puts("Oke gan");
exit(0);
}
}
void menu_encrypt(char ini_pass[])
{
puts("Encrypt tulisan");
puts("===========================================");
puts("input tulisan yang mau diencrypt:");
printf(">>");
scanf("%s",ini_pass);
getchar();
encrypt(ini_pass);
}
void menu_decrypt(char ini_pass[])
{
puts("Encrypt tulisan");
puts("===========================================");
puts("input tulisan yang mau didecrypt:");
printf(">>");
scanf("%s",ini_pass);
getchar();
decrypt(ini_pass);
}