Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
raliis
/
IAX0584
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
28271caa
authored
7 years ago
by
raliis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete krypto2.c
parent
3c4efbdb
master
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
135 deletions
week1/krypto2.c
week1/krypto2.c
deleted
100644 → 0
View file @
3c4efbdb
#include <stdio.h>
void
encrypt
();
void
decrypt
();
int
main
(
void
)
{
char
valik
;
printf
(
"Do you wish to encrypt or decrypt?
\n
"
);
do
{
printf
(
"Please enter a valid option(e/d):"
);
scanf
(
"%c"
,
&
valik
);
}
while
(
valik
!=
'e'
&&
valik
!=
'd'
);
if
(
valik
==
'e'
)
{
encrypt
();
}
else
if
(
valik
==
'd'
)
{
decrypt
();
}
else
{
printf
(
"option does not exist"
);
}
return
0
;
}
void
encrypt
()
{
char
ni
[
80
]
=
"sisend.txt"
,
no
[
80
]
=
"tul.txt"
;
char
c
;
int
key
;
int
caesar
;
FILE
*
fi
,
*
fo
;
fi
=
fopen
(
ni
,
"r"
);
fo
=
fopen
(
no
,
"w"
);
printf
(
"Enter the encryption key to encrypt: "
);
scanf
(
"%d"
,
&
key
);
do
{
c
=
fgetc
(
fi
);
if
(
feof
(
fi
))
{
break
;
}
if
(
c
>=
65
&&
c
<=
90
)
{
if
((
c
+
key
)
>
90
)
{
caesar
=
c
-
(
26
-
key
);
}
else
{
caesar
=
(
int
)
c
+
key
;
}
}
else
if
(
c
>=
97
&&
c
<=
122
)
{
if
((
c
+
key
)
>
122
)
{
caesar
=
c
-
(
26
-
key
);
}
else
{
caesar
=
(
int
)
c
+
key
;
}
}
printf
(
"%c"
,
caesar
);
fprintf
(
fo
,
"%c"
,
caesar
);
}
while
(
1
);
printf
(
"
\n
"
);
}
void
decrypt
()
{
char
ni
[
80
]
=
"sisend.txt"
,
no
[
80
]
=
"tul.txt"
;
char
c
;
int
key
;
int
caesar
;
FILE
*
fi
,
*
fo
;
fi
=
fopen
(
ni
,
"r"
);
fo
=
fopen
(
no
,
"w"
);
printf
(
"Enter the encryption key to decrypt: "
);
scanf
(
"%d"
,
&
key
);
do
{
c
=
fgetc
(
fi
);
if
(
feof
(
fi
))
{
break
;
}
if
(
c
>=
65
&&
c
<=
90
)
{
if
((
c
-
key
)
<
65
)
{
caesar
=
c
+
(
26
-
key
);
}
else
{
caesar
=
(
int
)
c
-
key
;
}
}
else
if
(
c
>=
97
&&
c
<=
122
)
{
if
((
c
-
key
)
<
97
)
{
caesar
=
c
+
(
26
-
key
);
}
else
{
caesar
=
(
int
)
c
-
key
;
}
}
printf
(
"%c"
,
caesar
);
fprintf
(
fo
,
"%c"
,
caesar
);
}
while
(
1
);
printf
(
"
\n
"
);
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment