1656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project/* crypto/des/ecb_enc.c */
2656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * All rights reserved.
4656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
5656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * This package is an SSL implementation written
6656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * by Eric Young (eay@cryptsoft.com).
7656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * The implementation was written so as to conform with Netscapes SSL.
8656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
9656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * This library is free for commercial and non-commercial use as long as
10656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * the following conditions are aheared to.  The following conditions
11656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * apply to all code found in this distribution, be it the RC4, RSA,
12656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * included with this distribution is covered by the same copyright terms
14656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
16656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * Copyright remains Eric Young's, and as such any Copyright notices in
17656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * the code are not to be removed.
18656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * If this package is used in a product, Eric Young should be given attribution
19656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * as the author of the parts of the library used.
20656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * This can be in the form of a textual message at program startup or
21656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * in documentation (online or textual) provided with the package.
22656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
23656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * Redistribution and use in source and binary forms, with or without
24656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * modification, are permitted provided that the following conditions
25656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * are met:
26656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * 1. Redistributions of source code must retain the copyright
27656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    notice, this list of conditions and the following disclaimer.
28656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
29656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
30656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    documentation and/or other materials provided with the distribution.
31656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * 3. All advertising materials mentioning features or use of this software
32656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    must display the following acknowledgement:
33656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    "This product includes cryptographic software written by
34656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *     Eric Young (eay@cryptsoft.com)"
35656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    The word 'cryptographic' can be left out if the rouines from the library
36656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    being used are not cryptographic related :-).
37656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * 4. If you include any Windows specific code (or a derivative thereof) from
38656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    the apps directory (application code) you must include an acknowledgement:
39656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
41656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * SUCH DAMAGE.
52656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project *
53656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * The licence and distribution terms for any publically available version or
54656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * derivative of this code cannot be changed.  i.e. this code cannot simply be
55656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * copied and put under another distribution licence
56656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project * [including the GNU Public Licence.]
57656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project */
58656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project
59656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project#include "des_locl.h"
60221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#include "des_ver.h"
61221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#include <openssl/opensslv.h>
62221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#include <openssl/bio.h>
63221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom
64221304ee937bc0910948a8be1320cb8cc4eb6d36Brian CarlstromOPENSSL_GLOBAL const char libdes_version[]="libdes" OPENSSL_VERSION_PTEXT;
65221304ee937bc0910948a8be1320cb8cc4eb6d36Brian CarlstromOPENSSL_GLOBAL const char DES_version[]="DES" OPENSSL_VERSION_PTEXT;
66221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom
67221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstromconst char *DES_options(void)
68221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	{
69221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	static int init=1;
70221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	static char buf[32];
71221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom
72221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	if (init)
73221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		{
74221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		const char *ptr,*unroll,*risc,*size;
75221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom
76221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#ifdef DES_PTR
77221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		ptr="ptr";
78221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#else
79221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		ptr="idx";
80221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#endif
81221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#if defined(DES_RISC1) || defined(DES_RISC2)
82221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#ifdef DES_RISC1
83221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		risc="risc1";
84221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#endif
85221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#ifdef DES_RISC2
86221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		risc="risc2";
87221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#endif
88221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#else
89221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		risc="cisc";
90221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#endif
91221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#ifdef DES_UNROLL
92221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		unroll="16";
93221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#else
94221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		unroll="2";
95221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom#endif
96221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		if (sizeof(DES_LONG) != sizeof(long))
97221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom			size="int";
98221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		else
99221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom			size="long";
100221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		BIO_snprintf(buf,sizeof buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,
101221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom			     size);
102221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		init=0;
103221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom		}
104221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	return(buf);
105221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom	}
106221304ee937bc0910948a8be1320cb8cc4eb6d36Brian Carlstrom
107656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project
108656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Projectvoid DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output,
109656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project		     DES_key_schedule *ks, int enc)
110656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	{
111656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	register DES_LONG l;
112656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	DES_LONG ll[2];
113656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	const unsigned char *in = &(*input)[0];
114656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	unsigned char *out = &(*output)[0];
115656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project
116656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	c2l(in,l); ll[0]=l;
117656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	c2l(in,l); ll[1]=l;
118656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	DES_encrypt1(ll,ks,enc);
119656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	l=ll[0]; l2c(l,out);
120656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	l=ll[1]; l2c(l,out);
121656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	l=ll[0]=ll[1]=0;
122656d9c7f52f88b3a3daccafa7655dec086c4756eThe Android Open Source Project	}
123