1 |
786 |
skrzyp |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// src/sys/netinet6/esp_rijndael.c
|
4 |
|
|
//
|
5 |
|
|
//==========================================================================
|
6 |
|
|
// ####BSDCOPYRIGHTBEGIN####
|
7 |
|
|
// -------------------------------------------
|
8 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
9 |
|
|
//
|
10 |
|
|
// Portions of this software may have been derived from FreeBSD
|
11 |
|
|
// or other sources, and if so are covered by the appropriate copyright
|
12 |
|
|
// and license included herein.
|
13 |
|
|
//
|
14 |
|
|
// Portions created by the Free Software Foundation are
|
15 |
|
|
// Copyright (C) 2002 Free Software Foundation, Inc.
|
16 |
|
|
// -------------------------------------------
|
17 |
|
|
// ####BSDCOPYRIGHTEND####
|
18 |
|
|
//==========================================================================
|
19 |
|
|
|
20 |
|
|
/* $KAME: esp_rijndael.c,v 1.4 2001/03/02 05:53:05 itojun Exp $ */
|
21 |
|
|
|
22 |
|
|
/*
|
23 |
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
24 |
|
|
* All rights reserved.
|
25 |
|
|
*
|
26 |
|
|
* Redistribution and use in source and binary forms, with or without
|
27 |
|
|
* modification, are permitted provided that the following conditions
|
28 |
|
|
* are met:
|
29 |
|
|
* 1. Redistributions of source code must retain the above copyright
|
30 |
|
|
* notice, this list of conditions and the following disclaimer.
|
31 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
32 |
|
|
* notice, this list of conditions and the following disclaimer in the
|
33 |
|
|
* documentation and/or other materials provided with the distribution.
|
34 |
|
|
* 3. Neither the name of the project nor the names of its contributors
|
35 |
|
|
* may be used to endorse or promote products derived from this software
|
36 |
|
|
* without specific prior written permission.
|
37 |
|
|
*
|
38 |
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
39 |
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
40 |
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
41 |
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
42 |
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
43 |
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
44 |
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
45 |
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
46 |
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
47 |
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
48 |
|
|
* SUCH DAMAGE.
|
49 |
|
|
*/
|
50 |
|
|
|
51 |
|
|
#include <sys/param.h>
|
52 |
|
|
#include <sys/socket.h>
|
53 |
|
|
#include <sys/queue.h>
|
54 |
|
|
|
55 |
|
|
#include <net/if.h>
|
56 |
|
|
#include <net/route.h>
|
57 |
|
|
|
58 |
|
|
#include <netinet6/ipsec.h>
|
59 |
|
|
#include <netinet6/esp.h>
|
60 |
|
|
#include <netinet6/esp_rijndael.h>
|
61 |
|
|
|
62 |
|
|
#include <crypto/rijndael/rijndael.h>
|
63 |
|
|
|
64 |
|
|
/* as rijndael uses assymetric scheduled keys, we need to do it twice. */
|
65 |
|
|
int
|
66 |
|
|
esp_rijndael_schedlen(algo)
|
67 |
|
|
const struct esp_algorithm *algo;
|
68 |
|
|
{
|
69 |
|
|
|
70 |
|
|
return sizeof(keyInstance) * 2;
|
71 |
|
|
}
|
72 |
|
|
|
73 |
|
|
int
|
74 |
|
|
esp_rijndael_schedule(algo, sav)
|
75 |
|
|
const struct esp_algorithm *algo;
|
76 |
|
|
struct secasvar *sav;
|
77 |
|
|
{
|
78 |
|
|
keyInstance *k;
|
79 |
|
|
|
80 |
|
|
k = (keyInstance *)sav->sched;
|
81 |
|
|
if (rijndael_makeKey(&k[0], DIR_DECRYPT, _KEYLEN(sav->key_enc) * 8,
|
82 |
|
|
_KEYBUF(sav->key_enc)) < 0)
|
83 |
|
|
return -1;
|
84 |
|
|
if (rijndael_makeKey(&k[1], DIR_ENCRYPT, _KEYLEN(sav->key_enc) * 8,
|
85 |
|
|
_KEYBUF(sav->key_enc)) < 0)
|
86 |
|
|
return -1;
|
87 |
|
|
return 0;
|
88 |
|
|
}
|
89 |
|
|
|
90 |
|
|
int
|
91 |
|
|
esp_rijndael_blockdecrypt(algo, sav, s, d)
|
92 |
|
|
const struct esp_algorithm *algo;
|
93 |
|
|
struct secasvar *sav;
|
94 |
|
|
u_int8_t *s;
|
95 |
|
|
u_int8_t *d;
|
96 |
|
|
{
|
97 |
|
|
cipherInstance c;
|
98 |
|
|
keyInstance *p;
|
99 |
|
|
|
100 |
|
|
/* does not take advantage of CBC mode support */
|
101 |
|
|
bzero(&c, sizeof(c));
|
102 |
|
|
if (rijndael_cipherInit(&c, MODE_ECB, NULL) < 0)
|
103 |
|
|
return -1;
|
104 |
|
|
p = (keyInstance *)sav->sched;
|
105 |
|
|
if (rijndael_blockDecrypt(&c, &p[0], s, algo->padbound * 8, d) < 0)
|
106 |
|
|
return -1;
|
107 |
|
|
return 0;
|
108 |
|
|
}
|
109 |
|
|
|
110 |
|
|
int
|
111 |
|
|
esp_rijndael_blockencrypt(algo, sav, s, d)
|
112 |
|
|
const struct esp_algorithm *algo;
|
113 |
|
|
struct secasvar *sav;
|
114 |
|
|
u_int8_t *s;
|
115 |
|
|
u_int8_t *d;
|
116 |
|
|
{
|
117 |
|
|
cipherInstance c;
|
118 |
|
|
keyInstance *p;
|
119 |
|
|
|
120 |
|
|
/* does not take advantage of CBC mode support */
|
121 |
|
|
bzero(&c, sizeof(c));
|
122 |
|
|
if (rijndael_cipherInit(&c, MODE_ECB, NULL) < 0)
|
123 |
|
|
return -1;
|
124 |
|
|
p = (keyInstance *)sav->sched;
|
125 |
|
|
if (rijndael_blockEncrypt(&c, &p[1], s, algo->padbound * 8, d) < 0)
|
126 |
|
|
return -1;
|
127 |
|
|
return 0;
|
128 |
|
|
}
|