-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathStr_encrypt.c
95 lines (93 loc) · 1.55 KB
/
Str_encrypt.c
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
92
93
94
95
//program to encrypt and decrypt the string
#include <stdio.h>
#include <string.h>
void encrypt(char *str, int n)
{
int diff;
for (; *str != '\0'; str++)
{
if (*str < 97)
continue;
*str = *str + n;
if (*str > 122)
{
*str = *str % 26;
*str = 'a' + diff;
}
}
}
void encrypt1(char *str)
{
for (; *str != '\0'; str++)
{
if (*str < 97 || *str > 122)
continue;
if (*str == 'z')
*str = 'a';
else
*str = *str + 1;
}
}
void decrypt1(char *str)
{
for (; *str != '\0'; str++)
{
if (*str < 97 || *str > 122)
continue;
if (*str == 'a')
*str = 'z';
else
*str = *str - 1;
}
}
void encrypt2(char *str1, char *str2)
{
for (; *str1 != '\0'; str1++)
{
if (*str1 < 97 || *str1 > 122)
continue;
*str1 = str2[*str1 - 97];
}
}
int strch(char *str, char ch)
{
int i;
for (i = 0; str[i] != '\0'; i++)
if (str[i] == ch)
return i;
}
void decrypt2(char *str1, char *str2)
{
int i;
for (; *str1 != '\0'; str1++)
{
if (*str1 < 97 || *str1 > 122)
continue;
i = strch(str2, *str1);
*str1 = i + 97;
}
}
int main(void)
{
int n;
char str[100], str2[30];
//printf("Enter the string : ");
//gets(str);
//puts(str);
//encrypt1(str);
//puts(str);
//decrypt1(str);
//puts(str);
//strcpy(str2,"mnkghdtabwvuprqczjxieyflos");
printf("Enter the string : ");
gets(str);
puts(str);
printf("Enter the moves : ");
scanf("%d", &n);
encrypt(str, n);
//encrypt2(str,str2);
puts(str);
//decrypt2(str,str2);
//puts(str);
return 0;
}