1b5a8f767SHajimu UMEMOTO /* $KAME: des.h,v 1.8 2001/09/10 04:03:57 itojun Exp $ */ 2686cdd19SJun-ichiro itojun Hagino 36a800098SYoshinobu Inoue /* lib/des/des.h */ 46a800098SYoshinobu Inoue /* Copyright (C) 1995-1996 Eric Young (eay@mincom.oz.au) 56a800098SYoshinobu Inoue * All rights reserved. 66a800098SYoshinobu Inoue * 76a800098SYoshinobu Inoue * This file is part of an SSL implementation written 86a800098SYoshinobu Inoue * by Eric Young (eay@mincom.oz.au). 96a800098SYoshinobu Inoue * The implementation was written so as to conform with Netscapes SSL 106a800098SYoshinobu Inoue * specification. This library and applications are 116a800098SYoshinobu Inoue * FREE FOR COMMERCIAL AND NON-COMMERCIAL USE 126a800098SYoshinobu Inoue * as long as the following conditions are aheared to. 136a800098SYoshinobu Inoue * 146a800098SYoshinobu Inoue * Copyright remains Eric Young's, and as such any Copyright notices in 156a800098SYoshinobu Inoue * the code are not to be removed. If this code is used in a product, 166a800098SYoshinobu Inoue * Eric Young should be given attribution as the author of the parts used. 176a800098SYoshinobu Inoue * This can be in the form of a textual message at program startup or 186a800098SYoshinobu Inoue * in documentation (online or textual) provided with the package. 196a800098SYoshinobu Inoue * 206a800098SYoshinobu Inoue * Redistribution and use in source and binary forms, with or without 216a800098SYoshinobu Inoue * modification, are permitted provided that the following conditions 226a800098SYoshinobu Inoue * are met: 236a800098SYoshinobu Inoue * 1. Redistributions of source code must retain the copyright 246a800098SYoshinobu Inoue * notice, this list of conditions and the following disclaimer. 256a800098SYoshinobu Inoue * 2. Redistributions in binary form must reproduce the above copyright 266a800098SYoshinobu Inoue * notice, this list of conditions and the following disclaimer in the 276a800098SYoshinobu Inoue * documentation and/or other materials provided with the distribution. 286a800098SYoshinobu Inoue * 3. All advertising materials mentioning features or use of this software 296a800098SYoshinobu Inoue * must display the following acknowledgement: 306a800098SYoshinobu Inoue * This product includes software developed by Eric Young (eay@mincom.oz.au) 316a800098SYoshinobu Inoue * 326a800098SYoshinobu Inoue * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 336a800098SYoshinobu Inoue * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 346a800098SYoshinobu Inoue * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 356a800098SYoshinobu Inoue * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 366a800098SYoshinobu Inoue * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 376a800098SYoshinobu Inoue * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 386a800098SYoshinobu Inoue * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 396a800098SYoshinobu Inoue * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 406a800098SYoshinobu Inoue * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 416a800098SYoshinobu Inoue * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 426a800098SYoshinobu Inoue * SUCH DAMAGE. 436a800098SYoshinobu Inoue * 446a800098SYoshinobu Inoue * The licence and distribution terms for any publically available version or 456a800098SYoshinobu Inoue * derivative of this code cannot be changed. i.e. this code cannot simply be 466a800098SYoshinobu Inoue * copied and put under another distribution licence 476a800098SYoshinobu Inoue * [including the GNU Public Licence.] 486a800098SYoshinobu Inoue */ 496a800098SYoshinobu Inoue 506a800098SYoshinobu Inoue #ifndef HEADER_DES_H 516a800098SYoshinobu Inoue #define HEADER_DES_H 526a800098SYoshinobu Inoue 536a800098SYoshinobu Inoue #ifdef __cplusplus 546a800098SYoshinobu Inoue extern "C" { 556a800098SYoshinobu Inoue #endif 566a800098SYoshinobu Inoue 5733841545SHajimu UMEMOTO /* must be 32bit quantity */ 58*d3d79e96SJohn Baldwin #define DES_LONG uint32_t 596a800098SYoshinobu Inoue 606a800098SYoshinobu Inoue typedef unsigned char des_cblock[8]; 616a800098SYoshinobu Inoue typedef struct des_ks_struct 626a800098SYoshinobu Inoue { 636a800098SYoshinobu Inoue union { 64b5a8f767SHajimu UMEMOTO des_cblock cblock; 656a800098SYoshinobu Inoue /* make sure things are correct size on machines with 666a800098SYoshinobu Inoue * 8 byte longs */ 67b5a8f767SHajimu UMEMOTO DES_LONG deslong[2]; 686a800098SYoshinobu Inoue } ks; 69b5a8f767SHajimu UMEMOTO int weak_key; 706a800098SYoshinobu Inoue } des_key_schedule[16]; 716a800098SYoshinobu Inoue 726a800098SYoshinobu Inoue #define DES_KEY_SZ (sizeof(des_cblock)) 736a800098SYoshinobu Inoue #define DES_SCHEDULE_SZ (sizeof(des_key_schedule)) 746a800098SYoshinobu Inoue 756a800098SYoshinobu Inoue #define DES_ENCRYPT 1 766a800098SYoshinobu Inoue #define DES_DECRYPT 0 776a800098SYoshinobu Inoue 786a800098SYoshinobu Inoue #define DES_CBC_MODE 0 796a800098SYoshinobu Inoue #define DES_PCBC_MODE 1 806a800098SYoshinobu Inoue 816a800098SYoshinobu Inoue extern int des_check_key; /* defaults to false */ 826a800098SYoshinobu Inoue 8314e10f99SAlfred Perlstein char *des_options(void); 8487210a0cSJohn Baldwin void des_ecb_encrypt(unsigned char *, unsigned char *, des_key_schedule, int); 85b5a8f767SHajimu UMEMOTO 8614e10f99SAlfred Perlstein void des_encrypt1(DES_LONG *, des_key_schedule, int); 8714e10f99SAlfred Perlstein void des_encrypt2(DES_LONG *, des_key_schedule, int); 8814e10f99SAlfred Perlstein void des_encrypt3(DES_LONG *, des_key_schedule, des_key_schedule, 8914e10f99SAlfred Perlstein des_key_schedule); 9014e10f99SAlfred Perlstein void des_decrypt3(DES_LONG *, des_key_schedule, des_key_schedule, 9114e10f99SAlfred Perlstein des_key_schedule); 92b5a8f767SHajimu UMEMOTO 9387210a0cSJohn Baldwin void des_ecb3_encrypt(unsigned char *, unsigned char *, des_key_schedule, 9414e10f99SAlfred Perlstein des_key_schedule, des_key_schedule, int); 95b5a8f767SHajimu UMEMOTO 9687210a0cSJohn Baldwin void des_set_odd_parity(unsigned char *); 9787210a0cSJohn Baldwin void des_fixup_key_parity(unsigned char *); 9887210a0cSJohn Baldwin int des_is_weak_key(const unsigned char *); 9987210a0cSJohn Baldwin int des_set_key(const unsigned char *, des_key_schedule); 10087210a0cSJohn Baldwin int des_key_sched(const unsigned char *, des_key_schedule); 10187210a0cSJohn Baldwin int des_set_key_checked(const unsigned char *, des_key_schedule); 10287210a0cSJohn Baldwin void des_set_key_unchecked(const unsigned char *, des_key_schedule); 10387210a0cSJohn Baldwin int des_check_key_parity(const unsigned char *); 1046a800098SYoshinobu Inoue 1056a800098SYoshinobu Inoue #ifdef __cplusplus 1066a800098SYoshinobu Inoue } 1076a800098SYoshinobu Inoue #endif 1086a800098SYoshinobu Inoue 1096a800098SYoshinobu Inoue #endif 110