10Sstevel@tonic-gate /* crypto/rc4/rc4.c */
20Sstevel@tonic-gate /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
30Sstevel@tonic-gate * All rights reserved.
40Sstevel@tonic-gate *
50Sstevel@tonic-gate * This package is an SSL implementation written
60Sstevel@tonic-gate * by Eric Young (eay@cryptsoft.com).
70Sstevel@tonic-gate * The implementation was written so as to conform with Netscapes SSL.
80Sstevel@tonic-gate *
90Sstevel@tonic-gate * This library is free for commercial and non-commercial use as long as
100Sstevel@tonic-gate * the following conditions are aheared to. The following conditions
110Sstevel@tonic-gate * apply to all code found in this distribution, be it the RC4, RSA,
120Sstevel@tonic-gate * lhash, DES, etc., code; not just the SSL code. The SSL documentation
130Sstevel@tonic-gate * included with this distribution is covered by the same copyright terms
140Sstevel@tonic-gate * except that the holder is Tim Hudson (tjh@cryptsoft.com).
150Sstevel@tonic-gate *
160Sstevel@tonic-gate * Copyright remains Eric Young's, and as such any Copyright notices in
170Sstevel@tonic-gate * the code are not to be removed.
180Sstevel@tonic-gate * If this package is used in a product, Eric Young should be given attribution
190Sstevel@tonic-gate * as the author of the parts of the library used.
200Sstevel@tonic-gate * This can be in the form of a textual message at program startup or
210Sstevel@tonic-gate * in documentation (online or textual) provided with the package.
220Sstevel@tonic-gate *
230Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
240Sstevel@tonic-gate * modification, are permitted provided that the following conditions
250Sstevel@tonic-gate * are met:
260Sstevel@tonic-gate * 1. Redistributions of source code must retain the copyright
270Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer.
280Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright
290Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the
300Sstevel@tonic-gate * documentation and/or other materials provided with the distribution.
310Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this software
320Sstevel@tonic-gate * must display the following acknowledgement:
330Sstevel@tonic-gate * "This product includes cryptographic software written by
340Sstevel@tonic-gate * Eric Young (eay@cryptsoft.com)"
350Sstevel@tonic-gate * The word 'cryptographic' can be left out if the rouines from the library
360Sstevel@tonic-gate * being used are not cryptographic related :-).
370Sstevel@tonic-gate * 4. If you include any Windows specific code (or a derivative thereof) from
380Sstevel@tonic-gate * the apps directory (application code) you must include an acknowledgement:
390Sstevel@tonic-gate * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
400Sstevel@tonic-gate *
410Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
420Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
430Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
440Sstevel@tonic-gate * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
450Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
460Sstevel@tonic-gate * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
470Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
480Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
490Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
500Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
510Sstevel@tonic-gate * SUCH DAMAGE.
520Sstevel@tonic-gate *
530Sstevel@tonic-gate * The licence and distribution terms for any publically available version or
540Sstevel@tonic-gate * derivative of this code cannot be changed. i.e. this code cannot simply be
550Sstevel@tonic-gate * copied and put under another distribution licence
560Sstevel@tonic-gate * [including the GNU Public Licence.]
570Sstevel@tonic-gate */
580Sstevel@tonic-gate
590Sstevel@tonic-gate #include <stdio.h>
600Sstevel@tonic-gate #include <stdlib.h>
610Sstevel@tonic-gate #include <string.h>
620Sstevel@tonic-gate #include <openssl/rc4.h>
63*2139Sjp161948 #include <openssl/evp.h>
640Sstevel@tonic-gate
650Sstevel@tonic-gate char *usage[]={
660Sstevel@tonic-gate "usage: rc4 args\n",
670Sstevel@tonic-gate "\n",
680Sstevel@tonic-gate " -in arg - input file - default stdin\n",
690Sstevel@tonic-gate " -out arg - output file - default stdout\n",
700Sstevel@tonic-gate " -key key - password\n",
710Sstevel@tonic-gate NULL
720Sstevel@tonic-gate };
730Sstevel@tonic-gate
main(int argc,char * argv[])740Sstevel@tonic-gate int main(int argc, char *argv[])
750Sstevel@tonic-gate {
760Sstevel@tonic-gate FILE *in=NULL,*out=NULL;
770Sstevel@tonic-gate char *infile=NULL,*outfile=NULL,*keystr=NULL;
780Sstevel@tonic-gate RC4_KEY key;
790Sstevel@tonic-gate char buf[BUFSIZ];
800Sstevel@tonic-gate int badops=0,i;
810Sstevel@tonic-gate char **pp;
820Sstevel@tonic-gate unsigned char md[MD5_DIGEST_LENGTH];
830Sstevel@tonic-gate
840Sstevel@tonic-gate argc--;
850Sstevel@tonic-gate argv++;
860Sstevel@tonic-gate while (argc >= 1)
870Sstevel@tonic-gate {
880Sstevel@tonic-gate if (strcmp(*argv,"-in") == 0)
890Sstevel@tonic-gate {
900Sstevel@tonic-gate if (--argc < 1) goto bad;
910Sstevel@tonic-gate infile= *(++argv);
920Sstevel@tonic-gate }
930Sstevel@tonic-gate else if (strcmp(*argv,"-out") == 0)
940Sstevel@tonic-gate {
950Sstevel@tonic-gate if (--argc < 1) goto bad;
960Sstevel@tonic-gate outfile= *(++argv);
970Sstevel@tonic-gate }
980Sstevel@tonic-gate else if (strcmp(*argv,"-key") == 0)
990Sstevel@tonic-gate {
1000Sstevel@tonic-gate if (--argc < 1) goto bad;
1010Sstevel@tonic-gate keystr= *(++argv);
1020Sstevel@tonic-gate }
1030Sstevel@tonic-gate else
1040Sstevel@tonic-gate {
1050Sstevel@tonic-gate fprintf(stderr,"unknown option %s\n",*argv);
1060Sstevel@tonic-gate badops=1;
1070Sstevel@tonic-gate break;
1080Sstevel@tonic-gate }
1090Sstevel@tonic-gate argc--;
1100Sstevel@tonic-gate argv++;
1110Sstevel@tonic-gate }
1120Sstevel@tonic-gate
1130Sstevel@tonic-gate if (badops)
1140Sstevel@tonic-gate {
1150Sstevel@tonic-gate bad:
1160Sstevel@tonic-gate for (pp=usage; (*pp != NULL); pp++)
1170Sstevel@tonic-gate fprintf(stderr,"%s",*pp);
1180Sstevel@tonic-gate exit(1);
1190Sstevel@tonic-gate }
1200Sstevel@tonic-gate
1210Sstevel@tonic-gate if (infile == NULL)
1220Sstevel@tonic-gate in=stdin;
1230Sstevel@tonic-gate else
1240Sstevel@tonic-gate {
1250Sstevel@tonic-gate in=fopen(infile,"r");
1260Sstevel@tonic-gate if (in == NULL)
1270Sstevel@tonic-gate {
1280Sstevel@tonic-gate perror("open");
1290Sstevel@tonic-gate exit(1);
1300Sstevel@tonic-gate }
1310Sstevel@tonic-gate
1320Sstevel@tonic-gate }
1330Sstevel@tonic-gate if (outfile == NULL)
1340Sstevel@tonic-gate out=stdout;
1350Sstevel@tonic-gate else
1360Sstevel@tonic-gate {
1370Sstevel@tonic-gate out=fopen(outfile,"w");
1380Sstevel@tonic-gate if (out == NULL)
1390Sstevel@tonic-gate {
1400Sstevel@tonic-gate perror("open");
1410Sstevel@tonic-gate exit(1);
1420Sstevel@tonic-gate }
1430Sstevel@tonic-gate }
1440Sstevel@tonic-gate
1450Sstevel@tonic-gate #ifdef OPENSSL_SYS_MSDOS
1460Sstevel@tonic-gate /* This should set the file to binary mode. */
1470Sstevel@tonic-gate {
1480Sstevel@tonic-gate #include <fcntl.h>
1490Sstevel@tonic-gate setmode(fileno(in),O_BINARY);
1500Sstevel@tonic-gate setmode(fileno(out),O_BINARY);
1510Sstevel@tonic-gate }
1520Sstevel@tonic-gate #endif
1530Sstevel@tonic-gate
1540Sstevel@tonic-gate if (keystr == NULL)
1550Sstevel@tonic-gate { /* get key */
1560Sstevel@tonic-gate i=EVP_read_pw_string(buf,BUFSIZ,"Enter RC4 password:",0);
1570Sstevel@tonic-gate if (i != 0)
1580Sstevel@tonic-gate {
1590Sstevel@tonic-gate OPENSSL_cleanse(buf,BUFSIZ);
1600Sstevel@tonic-gate fprintf(stderr,"bad password read\n");
1610Sstevel@tonic-gate exit(1);
1620Sstevel@tonic-gate }
1630Sstevel@tonic-gate keystr=buf;
1640Sstevel@tonic-gate }
1650Sstevel@tonic-gate
166*2139Sjp161948 EVP_Digest((unsigned char *)keystr,strlen(keystr),md,NULL,EVP_md5(),NULL);
1670Sstevel@tonic-gate OPENSSL_cleanse(keystr,strlen(keystr));
1680Sstevel@tonic-gate RC4_set_key(&key,MD5_DIGEST_LENGTH,md);
1690Sstevel@tonic-gate
1700Sstevel@tonic-gate for(;;)
1710Sstevel@tonic-gate {
1720Sstevel@tonic-gate i=fread(buf,1,BUFSIZ,in);
1730Sstevel@tonic-gate if (i == 0) break;
1740Sstevel@tonic-gate if (i < 0)
1750Sstevel@tonic-gate {
1760Sstevel@tonic-gate perror("read");
1770Sstevel@tonic-gate exit(1);
1780Sstevel@tonic-gate }
1790Sstevel@tonic-gate RC4(&key,(unsigned int)i,(unsigned char *)buf,
1800Sstevel@tonic-gate (unsigned char *)buf);
1810Sstevel@tonic-gate i=fwrite(buf,(unsigned int)i,1,out);
1820Sstevel@tonic-gate if (i != 1)
1830Sstevel@tonic-gate {
1840Sstevel@tonic-gate perror("write");
1850Sstevel@tonic-gate exit(1);
1860Sstevel@tonic-gate }
1870Sstevel@tonic-gate }
1880Sstevel@tonic-gate fclose(out);
1890Sstevel@tonic-gate fclose(in);
1900Sstevel@tonic-gate exit(0);
1910Sstevel@tonic-gate return(1);
1920Sstevel@tonic-gate }
1930Sstevel@tonic-gate
194