Update contrib.
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
62 #include <openssl/opensslconf.h>
63 #ifndef OPENSSL_SYS_MSDOS
64 #ifndef OPENSSL_SYS_VMS
65 #include OPENSSL_UNISTD
66 #else /* OPENSSL_SYS_VMS */
69 #else /* not __DECC */
72 #endif /* OPENSSL_SYS_VMS */
73 #else /* OPENSSL_SYS_MSDOS */
80 #ifdef OPENSSL_SYS_VMS
85 #include <sys/types.h>
89 #include <openssl/des.h>
90 #include <openssl/rand.h>
91 #include <openssl/ui_compat.h>
94 void doencryption(void);
95 int uufwrite(unsigned char *data, int size, unsigned int num, FILE *fp);
96 void uufwriteEnd(FILE *fp);
97 int uufread(unsigned char *out,int size,unsigned int num,FILE *fp);
98 int uuencode(unsigned char *in,int num,unsigned char *out);
99 int uudecode(unsigned char *in,int num,unsigned char *out);
100 void DES_3cbc_encrypt(DES_cblock *input,DES_cblock *output,long length,
101 DES_key_schedule sk1,DES_key_schedule sk2,
102 DES_cblock *ivec1,DES_cblock *ivec2,int enc);
103 #ifdef OPENSSL_SYS_VMS
104 #define EXIT(a) exit(a&0x10000000L)
106 #define EXIT(a) exit(a)
109 #define BUFSIZE (8*1024)
112 #define KEYSIZB 1024 /* should hit tty line limit first :-) */
114 int do_encrypt,longk=0;
115 FILE *DES_IN,*DES_OUT,*CKSUM_OUT;
117 unsigned char uubuf[50];
119 #define INUUBUFN (45*100)
120 #define OUTUUBUF (65*100)
121 unsigned char b[OUTUUBUF];
122 unsigned char bb[300];
123 DES_cblock cksum={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
124 char cksumname[200]="";
126 int vflag,cflag,eflag,dflag,kflag,bflag,fflag,sflag,uflag,flag3,hflag,error;
128 int main(int argc, char **argv)
131 struct stat ins,outs;
133 char *in=NULL,*out=NULL;
135 vflag=cflag=eflag=dflag=kflag=hflag=bflag=fflag=sflag=uflag=flag3=0;
137 memset(key,0,sizeof(key));
139 for (i=1; i<argc; i++)
142 if ((p[0] == '-') && (p[1] != '\0'))
155 strncpy(cksumname,p,200);
156 cksumname[sizeof(cksumname)-1]='\0';
157 p+=strlen(cksumname);
162 strncpy(cksumname,p,200);
163 cksumname[sizeof(cksumname)-1]='\0';
164 p+=strlen(cksumname);
194 strncpy(uuname,p,200);
195 uuname[sizeof(uuname)-1]='\0';
205 fputs("must have a key with the -k option\n",stderr);
213 strncpy(key,argv[i],KEYSIZB);
214 for (j=strlen(argv[i])-1; j>=0; j--)
219 fprintf(stderr,"'%c' unknown flag\n",p[-1]);
229 else if (out == NULL)
240 * do decrypt then ckecksum or
241 * do checksum then encrypt
243 if (((eflag+dflag) == 1) || cflag)
245 if (eflag) do_encrypt=DES_ENCRYPT;
246 if (dflag) do_encrypt=DES_DECRYPT;
253 fprintf(stderr,"des(1) built with %s\n",libdes_version);
261 if (vflag) fprintf(stderr,"des(1) built with %s\n",libdes_version);
265 #ifndef OPENSSL_SYS_MSDOS
266 (stat(in,&ins) != -1) &&
267 (stat(out,&outs) != -1) &&
268 (ins.st_dev == outs.st_dev) &&
269 (ins.st_ino == outs.st_ino))
270 #else /* OPENSSL_SYS_MSDOS */
271 (strcmp(in,out) == 0))
274 fputs("input and output file are the same\n",stderr);
279 if (des_read_pw_string(key,KEYSIZB+1,"Enter key:",eflag?VERIFY:0))
281 fputs("password error\n",stderr);
287 else if ((DES_IN=fopen(in,"r")) == NULL)
289 perror("opening input file");
299 else if ((DES_OUT=fopen(out,"w")) == NULL)
301 perror("opening output file");
305 #ifdef OPENSSL_SYS_MSDOS
306 /* This should set the file to binary mode. */
309 if (!(uflag && dflag))
310 setmode(fileno(DES_IN),O_BINARY);
311 if (!(uflag && eflag))
312 setmode(fileno(DES_OUT),O_BINARY);
325 static const char *Usage[]={
326 "des <options> [input-file [output-file]]",
328 "-v : des(1) version number",
329 "-e : encrypt using SunOS compatible user key to DES key conversion.",
331 "-d : decrypt using SunOS compatible user key to DES key conversion.",
333 "-c[ckname] : generate a cbc_cksum using SunOS compatible user key to",
334 " DES key conversion and output to ckname (stdout default,",
335 " stderr if data being output on stdout). The checksum is",
336 " generated before encryption and after decryption if used",
337 " in conjunction with -[eEdD].",
338 "-C[ckname] : generate a cbc_cksum as for -c but compatible with -[ED].",
339 "-k key : use key 'key'",
340 "-h : the key that is entered will be a hexadecimal number",
341 " that is used directly as the des key",
342 "-u[uuname] : input file is uudecoded if -[dD] or output uuencoded data if -[eE]",
343 " (uuname is the filename to put in the uuencode header).",
344 "-b : encrypt using DES in ecb encryption mode, the default is cbc mode.",
345 "-3 : encrypt using triple DES encryption. This uses 2 keys",
346 " generated from the input key. If the input key is less",
347 " than 8 characters long, this is equivalent to normal",
348 " encryption. Default is triple cbc, -b makes it triple ecb.",
351 for (u=(char **)Usage; *u; u++)
360 void doencryption(void)
363 extern unsigned long time();
367 DES_key_schedule ks,ks2;
370 int num=0,j,k,l,rem,ll,len,last,ex=0;
374 #ifndef OPENSSL_SYS_MSDOS
375 static unsigned char buf[BUFSIZE+8],obuf[BUFSIZE+8];
377 static unsigned char *buf=NULL,*obuf=NULL;
381 if ( (( buf=OPENSSL_malloc(BUFSIZE+8)) == NULL) ||
382 ((obuf=OPENSSL_malloc(BUFSIZE+8)) == NULL))
384 fputs("Not enough memory\n",stderr);
398 if ((*p <= '9') && (*p >= '0'))
400 else if ((*p <= 'f') && (*p >= 'a'))
402 else if ((*p <= 'F') && (*p >= 'A'))
406 fputs("Bad hex key\n",stderr);
411 if ((*p <= '9') && (*p >= '0'))
413 else if ((*p <= 'f') && (*p >= 'a'))
415 else if ((*p <= 'F') && (*p >= 'A'))
419 fputs("Bad hex key\n",stderr);
429 DES_set_key_unchecked(&k2,&ks2);
430 OPENSSL_cleanse(k2,sizeof(k2));
432 else if (longk || flag3)
436 DES_string_to_2keys(key,&kk,&k2);
437 DES_set_key_unchecked(&k2,&ks2);
438 OPENSSL_cleanse(k2,sizeof(k2));
441 DES_string_to_key(key,&kk);
444 for (i=0; i<KEYSIZ; i++)
459 DES_set_key_unchecked(&kk,&ks);
460 OPENSSL_cleanse(key,sizeof(key));
461 OPENSSL_cleanse(kk,sizeof(kk));
462 /* woops - A bug that does not showup under unix :-( */
463 memset(iv,0,sizeof(iv));
464 memset(iv2,0,sizeof(iv2));
469 if (eflag || (!dflag && cflag))
473 num=l=fread(&(buf[rem]),1,BUFSIZE,DES_IN);
478 perror("read error");
487 for (i=7-rem; i>0; i--)
488 RAND_pseudo_bytes(buf + l++, 1);
498 DES_cbc_cksum(buf,&cksum,
499 (long)len,&ks,&cksum);
502 if (feof(DES_IN)) break;
510 (DES_cblock *)&(buf[i]),
511 (DES_cblock *)&(obuf[i]),
513 else if (flag3 && bflag)
516 (DES_cblock *)&(buf[i]),
517 (DES_cblock *)&(obuf[i]),
518 &ks,&ks2,do_encrypt);
519 else if (flag3 && !bflag)
523 if (rem) memcpy(tmpbuf,&(buf[l]),
526 (DES_cblock *)buf,(DES_cblock *)obuf,
529 if (rem) memcpy(&(buf[l]),tmpbuf,
536 (long)l,&ks,&iv,do_encrypt);
537 if (l >= 8) memcpy(iv,&(obuf[l-8]),8);
539 if (rem) memcpy(buf,&(buf[l]),(unsigned int)rem);
545 j=uufwrite(obuf,1,(unsigned int)l-i,
548 j=fwrite(obuf,1,(unsigned int)l-i,
552 perror("Write error");
560 if (uflag) uufwriteEnd(DES_OUT);
572 l=uufread(buf,1,BUFSIZE,DES_IN);
574 l=fread(buf,1,BUFSIZE,DES_IN);
581 perror("read error");
589 (DES_cblock *)&(buf[i]),
590 (DES_cblock *)&(obuf[i]),
592 else if (flag3 && bflag)
595 (DES_cblock *)&(buf[i]),
596 (DES_cblock *)&(obuf[i]),
597 &ks,&ks2,do_encrypt);
598 else if (flag3 && !bflag)
601 (DES_cblock *)buf,(DES_cblock *)obuf,
609 (long)l,&ks,&iv,do_encrypt);
610 if (l >= 8) memcpy(iv,&(buf[l-8]),8);
614 ll=uufread(&(buf[rem]),1,BUFSIZE,DES_IN);
616 ll=fread(&(buf[rem]),1,BUFSIZE,DES_IN);
620 if (feof(DES_IN) && (ll == 0))
624 if ((last > 7) || (last < 0))
626 fputs("The file was not decrypted correctly.\n",
634 if (cflag) DES_cbc_cksum(obuf,
635 (DES_cblock *)cksum,(long)l/8*8,&ks,
636 (DES_cblock *)cksum);
639 j=fwrite(obuf,1,(unsigned int)l-i,DES_OUT);
642 perror("Write error");
649 if ((l == 0) && feof(DES_IN)) break;
655 if (cksumname[0] != '\0')
657 if ((O=fopen(cksumname,"w")) != NULL)
664 fprintf(CKSUM_OUT,"%02X",cksum[i]);
665 fprintf(CKSUM_OUT,"\n");
666 if (l) fclose(CKSUM_OUT);
669 OPENSSL_cleanse(buf,sizeof(buf));
670 OPENSSL_cleanse(obuf,sizeof(obuf));
671 OPENSSL_cleanse(&ks,sizeof(ks));
672 OPENSSL_cleanse(&ks2,sizeof(ks2));
673 OPENSSL_cleanse(iv,sizeof(iv));
674 OPENSSL_cleanse(iv2,sizeof(iv2));
675 OPENSSL_cleanse(kk,sizeof(kk));
676 OPENSSL_cleanse(k2,sizeof(k2));
677 OPENSSL_cleanse(uubuf,sizeof(uubuf));
678 OPENSSL_cleanse(b,sizeof(b));
679 OPENSSL_cleanse(bb,sizeof(bb));
680 OPENSSL_cleanse(cksum,sizeof(cksum));
681 if (Exit) EXIT(Exit);
684 /* We ignore this parameter but it should be > ~50 I believe */
685 int uufwrite(unsigned char *data, int size, unsigned int num, FILE *fp)
687 int i,j,left,rem,ret=num;
692 fprintf(fp,"begin 600 %s\n",
693 (uuname[0] == '\0')?"text.d":uuname);
699 if (uubufnum+num < 45)
701 memcpy(&(uubuf[uubufnum]),data,(unsigned int)num);
708 memcpy(&(uubuf[uubufnum]),data,(unsigned int)i);
709 j=uuencode((unsigned char *)uubuf,45,b);
710 fwrite(b,1,(unsigned int)j,fp);
717 for (i=0; i<(((int)num)-INUUBUFN); i+=INUUBUFN)
719 j=uuencode(&(data[i]),INUUBUFN,b);
720 fwrite(b,1,(unsigned int)j,fp);
726 j=uuencode(&(data[i]),left,b);
727 fwrite(b,1,(unsigned int)j,fp);
732 memcpy(uubuf,&(data[i]),(unsigned int)rem);
738 void uufwriteEnd(FILE *fp)
741 static const char *end=" \nend\n";
745 uubuf[uubufnum]='\0';
746 uubuf[uubufnum+1]='\0';
747 uubuf[uubufnum+2]='\0';
748 j=uuencode(uubuf,uubufnum,b);
749 fwrite(b,1,(unsigned int)j,fp);
751 fwrite(end,1,strlen(end),fp);
754 /* int size: should always be > ~ 60; I actually ignore this parameter :-) */
755 int uufread(unsigned char *out, int size, unsigned int num, FILE *fp)
767 fgets((char *)b,300,fp);
770 fprintf(stderr,"no 'begin' found in uuencoded input\n");
773 if (strncmp((char *)b,"begin ",6) == 0) break;
781 memcpy(out,bb,(unsigned int)valid);
788 fgets((char *)b,300,fp);
789 if (b[0] == '\0') break;
791 if ((b[0] == 'e') && (b[1] == 'n') && (b[2] == 'd'))
796 fgets((char *)b,300,fp);
804 /* num to copy to make it a multiple of 8 */
806 memcpy(&(out[tot]),bb,(unsigned int)j);
808 memcpy(bb,&(bb[j]),(unsigned int)i-j);
812 memcpy(&(out[tot]),bb,(unsigned int)i);
818 #define ccc2l(c,l) (l =((DES_LONG)(*((c)++)))<<16, \
819 l|=((DES_LONG)(*((c)++)))<< 8, \
820 l|=((DES_LONG)(*((c)++))))
822 #define l2ccc(l,c) (*((c)++)=(unsigned char)(((l)>>16)&0xff), \
823 *((c)++)=(unsigned char)(((l)>> 8)&0xff), \
824 *((c)++)=(unsigned char)(((l) )&0xff))
827 int uuencode(unsigned char *in, int num, unsigned char *out)
831 register unsigned char *p;
834 for (j=0; j<num; j+=45)
843 *(p++)=((l>>18)&0x3f)+' ';
844 *(p++)=((l>>12)&0x3f)+' ';
845 *(p++)=((l>> 6)&0x3f)+' ';
846 *(p++)=((l )&0x3f)+' ';
857 int uudecode(unsigned char *in, int num, unsigned char *out)
860 unsigned int n=0,space=0;
863 unsigned int blank=(unsigned int)'\n'-' ';
875 fprintf(stderr,"uuencoded line length too long\n");
880 for (i=0; i<n; j+=4,i+=3)
882 /* the following is for cases where spaces are
883 * removed from lines.
896 if ((w > 63) || (x > 63) || (y > 63) || (z > 63))
912 fprintf(stderr,"bad uuencoded data values\n");
918 l=(w<<18)|(x<<12)|(y<< 6)|(z );
923 fprintf(stderr,"missing nl in uuencoded line\n");