-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathdeciph.c
151 lines (140 loc) · 3.16 KB
/
deciph.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Program to decipher message using Blum-Goldwasser probabalistic
* Public key method
*
* Define RSA to use cubing instead of squaring. This is no longer
* provably as difficult to break as factoring the modulus, its a bit
* slower, but it is resistant to chosen ciphertext attack.
*/
#include <stdio.h>
#include "miracl.h"
#include <stdlib.h>
#include <string.h>
/*
#define RSA
*/
void strip(char *name)
{ /* strip extension off filename */
int i;
for (i=0;name[i]!='\0';i++)
{
if (name[i]!='.') continue;
name[i]='\0';
break;
}
}
int main()
{ /* decipher using private key */
big x,y,ke,p,q,n,a,b,alpha,beta,t;
FILE *ifile;
FILE *ofile;
int ch;
long i,ipt;
char ifname[13],ofname[13];
BOOL flo;
miracl *mip=mirsys(100,0);
x=mirvar(0);
ke=mirvar(0);
p=mirvar(0);
q=mirvar(0);
n=mirvar(0);
y=mirvar(0);
alpha=mirvar(0);
beta=mirvar(0);
a=mirvar(0);
b=mirvar(0);
t=mirvar(0);
mip->IOBASE=16;
if ((ifile=fopen("private.key","rt"))==NULL)
{
printf("Unable to open file private.key\n");
return 0;
}
cinnum(p,ifile);
cinnum(q,ifile);
fclose(ifile);
multiply(p,q,ke);
do
{ /* get input file */
printf("file to be deciphered = ");
gets(ifname);
} while (strlen(ifname)==0);
strip(ifname);
strcat(ifname,".key");
if ((ifile=fopen(ifname,"rt"))==NULL)
{
printf("Unable to open file %s\n",ifname);
return 0;
}
fscanf(ifile,"%ld\n",&ipt);
cinnum(x,ifile);
fclose(ifile);
strip(ifname);
strcat(ifname,".blg");
printf("output filename = ");
gets(ofname);
flo=FALSE;
if (strlen(ofname)>0)
{ /* set up output file */
flo=TRUE;
ofile=fopen(ofname,"wt");
}
else ofile=stdout;
printf("deciphering message\n");
xgcd(p,q,a,b,t);
lgconv(ipt,n); /* first recover "one-time pad" */
#ifdef RSA
decr(p,1,alpha);
premult(alpha,2,alpha);
incr(alpha,1,alpha);
subdiv(alpha,3,alpha);
#else
incr(p,1,alpha);
subdiv(alpha,4,alpha);
#endif
decr(p,1,y);
powmod(alpha,n,y,alpha);
#ifdef RSA
decr(q,1,beta);
premult(beta,2,beta);
incr(beta,1,beta);
subdiv(beta,3,beta);
#else
incr(q,1,beta);
subdiv(beta,4,beta);
#endif
decr(q,1,y);
powmod(beta,n,y,beta);
copy(x,y);
divide(x,p,p);
divide(y,q,q);
powmod(x,alpha,p,x); /* using chinese remainder thereom */
powmod(y,beta,q,y);
mad(x,q,q,ke,ke,t);
mad(t,b,b,ke,ke,t);
mad(y,p,p,ke,ke,x);
mad(x,a,a,ke,ke,x);
add(x,t,x);
divide(x,ke,ke);
if (size(x)<0) add(x,ke,x);
if ((ifile=fopen(ifname,"rb"))==NULL)
{
printf("Unable to open file %s\n",ifname);
return 0;
}
for (i=0;i<ipt;i++)
{ /* decipher character by character */
ch=fgetc(ifile);
ch^=x->w[0]; /* XOR with last byte of x */
fputc((char)ch,ofile);
#ifdef RSA
power(x,3,ke,x);
#else
mad(x,x,x,ke,ke,x);
#endif
}
fclose(ifile);
if (flo) fclose(ofile);
printf("\nmessage ends\n");
return 0;
}