diff options
author | miod <> | 2014-11-13 20:01:58 +0000 |
---|---|---|
committer | miod <> | 2014-11-13 20:01:58 +0000 |
commit | 89f79a1eedd8ac48c7243143f774e2e2e0d47fe2 (patch) | |
tree | f2297c90db455d1749acaffdf6e5ff63f46b28ec /src/lib | |
parent | 05b88033502e0eb4878bc1649b1b83fe030a4499 (diff) | |
download | openbsd-89f79a1eedd8ac48c7243143f774e2e2e0d47fe2.tar.gz openbsd-89f79a1eedd8ac48c7243143f774e2e2e0d47fe2.tar.bz2 openbsd-89f79a1eedd8ac48c7243143f774e2e2e0d47fe2.zip |
Sacrifice this code to the KNF deities.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/camellia/camellia.c | 640 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/camellia.h | 11 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_cbc.c | 19 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_cfb.c | 49 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_ctr.c | 21 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_ecb.c | 23 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_locl.h | 21 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_misc.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_ofb.c | 15 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/camellia.c | 640 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/camellia.h | 11 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_cbc.c | 19 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_cfb.c | 49 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_ctr.c | 21 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_ecb.c | 23 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_locl.h | 21 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_misc.c | 4 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/camellia/cmll_ofb.c | 15 |
18 files changed, 802 insertions, 804 deletions
diff --git a/src/lib/libcrypto/camellia/camellia.c b/src/lib/libcrypto/camellia/camellia.c index fa925b72a9..f001b9847d 100644 --- a/src/lib/libcrypto/camellia/camellia.c +++ b/src/lib/libcrypto/camellia/camellia.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: camellia.c,v 1.8 2014/10/28 07:35:58 jsg Exp $ */ | 1 | /* $OpenBSD: camellia.c,v 1.9 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . | 3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . |
4 | * ALL RIGHTS RESERVED. | 4 | * ALL RIGHTS RESERVED. |
@@ -65,10 +65,11 @@ | |||
65 | * ==================================================================== | 65 | * ==================================================================== |
66 | */ | 66 | */ |
67 | 67 | ||
68 | /* Algorithm Specification | 68 | /* |
69 | http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html | 69 | * Algorithm Specification |
70 | */ | 70 | * http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html |
71 | 71 | */ | |
72 | |||
72 | /* | 73 | /* |
73 | * This release balances code size and performance. In particular key | 74 | * This release balances code size and performance. In particular key |
74 | * schedule setup is fully unrolled, because doing so *significantly* | 75 | * schedule setup is fully unrolled, because doing so *significantly* |
@@ -125,177 +126,177 @@ | |||
125 | #define SBOX2_0222 Camellia_SBOX[2] | 126 | #define SBOX2_0222 Camellia_SBOX[2] |
126 | #define SBOX3_3033 Camellia_SBOX[3] | 127 | #define SBOX3_3033 Camellia_SBOX[3] |
127 | static const u32 Camellia_SBOX[][256] = { | 128 | static const u32 Camellia_SBOX[][256] = { |
128 | { 0x70707000, 0x82828200, 0x2c2c2c00, 0xececec00, 0xb3b3b300, 0x27272700, | 129 | { 0x70707000, 0x82828200, 0x2c2c2c00, 0xececec00, 0xb3b3b300, 0x27272700, |
129 | 0xc0c0c000, 0xe5e5e500, 0xe4e4e400, 0x85858500, 0x57575700, 0x35353500, | 130 | 0xc0c0c000, 0xe5e5e500, 0xe4e4e400, 0x85858500, 0x57575700, 0x35353500, |
130 | 0xeaeaea00, 0x0c0c0c00, 0xaeaeae00, 0x41414100, 0x23232300, 0xefefef00, | 131 | 0xeaeaea00, 0x0c0c0c00, 0xaeaeae00, 0x41414100, 0x23232300, 0xefefef00, |
131 | 0x6b6b6b00, 0x93939300, 0x45454500, 0x19191900, 0xa5a5a500, 0x21212100, | 132 | 0x6b6b6b00, 0x93939300, 0x45454500, 0x19191900, 0xa5a5a500, 0x21212100, |
132 | 0xededed00, 0x0e0e0e00, 0x4f4f4f00, 0x4e4e4e00, 0x1d1d1d00, 0x65656500, | 133 | 0xededed00, 0x0e0e0e00, 0x4f4f4f00, 0x4e4e4e00, 0x1d1d1d00, 0x65656500, |
133 | 0x92929200, 0xbdbdbd00, 0x86868600, 0xb8b8b800, 0xafafaf00, 0x8f8f8f00, | 134 | 0x92929200, 0xbdbdbd00, 0x86868600, 0xb8b8b800, 0xafafaf00, 0x8f8f8f00, |
134 | 0x7c7c7c00, 0xebebeb00, 0x1f1f1f00, 0xcecece00, 0x3e3e3e00, 0x30303000, | 135 | 0x7c7c7c00, 0xebebeb00, 0x1f1f1f00, 0xcecece00, 0x3e3e3e00, 0x30303000, |
135 | 0xdcdcdc00, 0x5f5f5f00, 0x5e5e5e00, 0xc5c5c500, 0x0b0b0b00, 0x1a1a1a00, | 136 | 0xdcdcdc00, 0x5f5f5f00, 0x5e5e5e00, 0xc5c5c500, 0x0b0b0b00, 0x1a1a1a00, |
136 | 0xa6a6a600, 0xe1e1e100, 0x39393900, 0xcacaca00, 0xd5d5d500, 0x47474700, | 137 | 0xa6a6a600, 0xe1e1e100, 0x39393900, 0xcacaca00, 0xd5d5d500, 0x47474700, |
137 | 0x5d5d5d00, 0x3d3d3d00, 0xd9d9d900, 0x01010100, 0x5a5a5a00, 0xd6d6d600, | 138 | 0x5d5d5d00, 0x3d3d3d00, 0xd9d9d900, 0x01010100, 0x5a5a5a00, 0xd6d6d600, |
138 | 0x51515100, 0x56565600, 0x6c6c6c00, 0x4d4d4d00, 0x8b8b8b00, 0x0d0d0d00, | 139 | 0x51515100, 0x56565600, 0x6c6c6c00, 0x4d4d4d00, 0x8b8b8b00, 0x0d0d0d00, |
139 | 0x9a9a9a00, 0x66666600, 0xfbfbfb00, 0xcccccc00, 0xb0b0b000, 0x2d2d2d00, | 140 | 0x9a9a9a00, 0x66666600, 0xfbfbfb00, 0xcccccc00, 0xb0b0b000, 0x2d2d2d00, |
140 | 0x74747400, 0x12121200, 0x2b2b2b00, 0x20202000, 0xf0f0f000, 0xb1b1b100, | 141 | 0x74747400, 0x12121200, 0x2b2b2b00, 0x20202000, 0xf0f0f000, 0xb1b1b100, |
141 | 0x84848400, 0x99999900, 0xdfdfdf00, 0x4c4c4c00, 0xcbcbcb00, 0xc2c2c200, | 142 | 0x84848400, 0x99999900, 0xdfdfdf00, 0x4c4c4c00, 0xcbcbcb00, 0xc2c2c200, |
142 | 0x34343400, 0x7e7e7e00, 0x76767600, 0x05050500, 0x6d6d6d00, 0xb7b7b700, | 143 | 0x34343400, 0x7e7e7e00, 0x76767600, 0x05050500, 0x6d6d6d00, 0xb7b7b700, |
143 | 0xa9a9a900, 0x31313100, 0xd1d1d100, 0x17171700, 0x04040400, 0xd7d7d700, | 144 | 0xa9a9a900, 0x31313100, 0xd1d1d100, 0x17171700, 0x04040400, 0xd7d7d700, |
144 | 0x14141400, 0x58585800, 0x3a3a3a00, 0x61616100, 0xdedede00, 0x1b1b1b00, | 145 | 0x14141400, 0x58585800, 0x3a3a3a00, 0x61616100, 0xdedede00, 0x1b1b1b00, |
145 | 0x11111100, 0x1c1c1c00, 0x32323200, 0x0f0f0f00, 0x9c9c9c00, 0x16161600, | 146 | 0x11111100, 0x1c1c1c00, 0x32323200, 0x0f0f0f00, 0x9c9c9c00, 0x16161600, |
146 | 0x53535300, 0x18181800, 0xf2f2f200, 0x22222200, 0xfefefe00, 0x44444400, | 147 | 0x53535300, 0x18181800, 0xf2f2f200, 0x22222200, 0xfefefe00, 0x44444400, |
147 | 0xcfcfcf00, 0xb2b2b200, 0xc3c3c300, 0xb5b5b500, 0x7a7a7a00, 0x91919100, | 148 | 0xcfcfcf00, 0xb2b2b200, 0xc3c3c300, 0xb5b5b500, 0x7a7a7a00, 0x91919100, |
148 | 0x24242400, 0x08080800, 0xe8e8e800, 0xa8a8a800, 0x60606000, 0xfcfcfc00, | 149 | 0x24242400, 0x08080800, 0xe8e8e800, 0xa8a8a800, 0x60606000, 0xfcfcfc00, |
149 | 0x69696900, 0x50505000, 0xaaaaaa00, 0xd0d0d000, 0xa0a0a000, 0x7d7d7d00, | 150 | 0x69696900, 0x50505000, 0xaaaaaa00, 0xd0d0d000, 0xa0a0a000, 0x7d7d7d00, |
150 | 0xa1a1a100, 0x89898900, 0x62626200, 0x97979700, 0x54545400, 0x5b5b5b00, | 151 | 0xa1a1a100, 0x89898900, 0x62626200, 0x97979700, 0x54545400, 0x5b5b5b00, |
151 | 0x1e1e1e00, 0x95959500, 0xe0e0e000, 0xffffff00, 0x64646400, 0xd2d2d200, | 152 | 0x1e1e1e00, 0x95959500, 0xe0e0e000, 0xffffff00, 0x64646400, 0xd2d2d200, |
152 | 0x10101000, 0xc4c4c400, 0x00000000, 0x48484800, 0xa3a3a300, 0xf7f7f700, | 153 | 0x10101000, 0xc4c4c400, 0x00000000, 0x48484800, 0xa3a3a300, 0xf7f7f700, |
153 | 0x75757500, 0xdbdbdb00, 0x8a8a8a00, 0x03030300, 0xe6e6e600, 0xdadada00, | 154 | 0x75757500, 0xdbdbdb00, 0x8a8a8a00, 0x03030300, 0xe6e6e600, 0xdadada00, |
154 | 0x09090900, 0x3f3f3f00, 0xdddddd00, 0x94949400, 0x87878700, 0x5c5c5c00, | 155 | 0x09090900, 0x3f3f3f00, 0xdddddd00, 0x94949400, 0x87878700, 0x5c5c5c00, |
155 | 0x83838300, 0x02020200, 0xcdcdcd00, 0x4a4a4a00, 0x90909000, 0x33333300, | 156 | 0x83838300, 0x02020200, 0xcdcdcd00, 0x4a4a4a00, 0x90909000, 0x33333300, |
156 | 0x73737300, 0x67676700, 0xf6f6f600, 0xf3f3f300, 0x9d9d9d00, 0x7f7f7f00, | 157 | 0x73737300, 0x67676700, 0xf6f6f600, 0xf3f3f300, 0x9d9d9d00, 0x7f7f7f00, |
157 | 0xbfbfbf00, 0xe2e2e200, 0x52525200, 0x9b9b9b00, 0xd8d8d800, 0x26262600, | 158 | 0xbfbfbf00, 0xe2e2e200, 0x52525200, 0x9b9b9b00, 0xd8d8d800, 0x26262600, |
158 | 0xc8c8c800, 0x37373700, 0xc6c6c600, 0x3b3b3b00, 0x81818100, 0x96969600, | 159 | 0xc8c8c800, 0x37373700, 0xc6c6c600, 0x3b3b3b00, 0x81818100, 0x96969600, |
159 | 0x6f6f6f00, 0x4b4b4b00, 0x13131300, 0xbebebe00, 0x63636300, 0x2e2e2e00, | 160 | 0x6f6f6f00, 0x4b4b4b00, 0x13131300, 0xbebebe00, 0x63636300, 0x2e2e2e00, |
160 | 0xe9e9e900, 0x79797900, 0xa7a7a700, 0x8c8c8c00, 0x9f9f9f00, 0x6e6e6e00, | 161 | 0xe9e9e900, 0x79797900, 0xa7a7a700, 0x8c8c8c00, 0x9f9f9f00, 0x6e6e6e00, |
161 | 0xbcbcbc00, 0x8e8e8e00, 0x29292900, 0xf5f5f500, 0xf9f9f900, 0xb6b6b600, | 162 | 0xbcbcbc00, 0x8e8e8e00, 0x29292900, 0xf5f5f500, 0xf9f9f900, 0xb6b6b600, |
162 | 0x2f2f2f00, 0xfdfdfd00, 0xb4b4b400, 0x59595900, 0x78787800, 0x98989800, | 163 | 0x2f2f2f00, 0xfdfdfd00, 0xb4b4b400, 0x59595900, 0x78787800, 0x98989800, |
163 | 0x06060600, 0x6a6a6a00, 0xe7e7e700, 0x46464600, 0x71717100, 0xbababa00, | 164 | 0x06060600, 0x6a6a6a00, 0xe7e7e700, 0x46464600, 0x71717100, 0xbababa00, |
164 | 0xd4d4d400, 0x25252500, 0xababab00, 0x42424200, 0x88888800, 0xa2a2a200, | 165 | 0xd4d4d400, 0x25252500, 0xababab00, 0x42424200, 0x88888800, 0xa2a2a200, |
165 | 0x8d8d8d00, 0xfafafa00, 0x72727200, 0x07070700, 0xb9b9b900, 0x55555500, | 166 | 0x8d8d8d00, 0xfafafa00, 0x72727200, 0x07070700, 0xb9b9b900, 0x55555500, |
166 | 0xf8f8f800, 0xeeeeee00, 0xacacac00, 0x0a0a0a00, 0x36363600, 0x49494900, | 167 | 0xf8f8f800, 0xeeeeee00, 0xacacac00, 0x0a0a0a00, 0x36363600, 0x49494900, |
167 | 0x2a2a2a00, 0x68686800, 0x3c3c3c00, 0x38383800, 0xf1f1f100, 0xa4a4a400, | 168 | 0x2a2a2a00, 0x68686800, 0x3c3c3c00, 0x38383800, 0xf1f1f100, 0xa4a4a400, |
168 | 0x40404000, 0x28282800, 0xd3d3d300, 0x7b7b7b00, 0xbbbbbb00, 0xc9c9c900, | 169 | 0x40404000, 0x28282800, 0xd3d3d300, 0x7b7b7b00, 0xbbbbbb00, 0xc9c9c900, |
169 | 0x43434300, 0xc1c1c100, 0x15151500, 0xe3e3e300, 0xadadad00, 0xf4f4f400, | 170 | 0x43434300, 0xc1c1c100, 0x15151500, 0xe3e3e300, 0xadadad00, 0xf4f4f400, |
170 | 0x77777700, 0xc7c7c700, 0x80808000, 0x9e9e9e00 }, | 171 | 0x77777700, 0xc7c7c700, 0x80808000, 0x9e9e9e00 }, |
171 | { 0x70700070, 0x2c2c002c, 0xb3b300b3, 0xc0c000c0, 0xe4e400e4, 0x57570057, | 172 | { 0x70700070, 0x2c2c002c, 0xb3b300b3, 0xc0c000c0, 0xe4e400e4, 0x57570057, |
172 | 0xeaea00ea, 0xaeae00ae, 0x23230023, 0x6b6b006b, 0x45450045, 0xa5a500a5, | 173 | 0xeaea00ea, 0xaeae00ae, 0x23230023, 0x6b6b006b, 0x45450045, 0xa5a500a5, |
173 | 0xeded00ed, 0x4f4f004f, 0x1d1d001d, 0x92920092, 0x86860086, 0xafaf00af, | 174 | 0xeded00ed, 0x4f4f004f, 0x1d1d001d, 0x92920092, 0x86860086, 0xafaf00af, |
174 | 0x7c7c007c, 0x1f1f001f, 0x3e3e003e, 0xdcdc00dc, 0x5e5e005e, 0x0b0b000b, | 175 | 0x7c7c007c, 0x1f1f001f, 0x3e3e003e, 0xdcdc00dc, 0x5e5e005e, 0x0b0b000b, |
175 | 0xa6a600a6, 0x39390039, 0xd5d500d5, 0x5d5d005d, 0xd9d900d9, 0x5a5a005a, | 176 | 0xa6a600a6, 0x39390039, 0xd5d500d5, 0x5d5d005d, 0xd9d900d9, 0x5a5a005a, |
176 | 0x51510051, 0x6c6c006c, 0x8b8b008b, 0x9a9a009a, 0xfbfb00fb, 0xb0b000b0, | 177 | 0x51510051, 0x6c6c006c, 0x8b8b008b, 0x9a9a009a, 0xfbfb00fb, 0xb0b000b0, |
177 | 0x74740074, 0x2b2b002b, 0xf0f000f0, 0x84840084, 0xdfdf00df, 0xcbcb00cb, | 178 | 0x74740074, 0x2b2b002b, 0xf0f000f0, 0x84840084, 0xdfdf00df, 0xcbcb00cb, |
178 | 0x34340034, 0x76760076, 0x6d6d006d, 0xa9a900a9, 0xd1d100d1, 0x04040004, | 179 | 0x34340034, 0x76760076, 0x6d6d006d, 0xa9a900a9, 0xd1d100d1, 0x04040004, |
179 | 0x14140014, 0x3a3a003a, 0xdede00de, 0x11110011, 0x32320032, 0x9c9c009c, | 180 | 0x14140014, 0x3a3a003a, 0xdede00de, 0x11110011, 0x32320032, 0x9c9c009c, |
180 | 0x53530053, 0xf2f200f2, 0xfefe00fe, 0xcfcf00cf, 0xc3c300c3, 0x7a7a007a, | 181 | 0x53530053, 0xf2f200f2, 0xfefe00fe, 0xcfcf00cf, 0xc3c300c3, 0x7a7a007a, |
181 | 0x24240024, 0xe8e800e8, 0x60600060, 0x69690069, 0xaaaa00aa, 0xa0a000a0, | 182 | 0x24240024, 0xe8e800e8, 0x60600060, 0x69690069, 0xaaaa00aa, 0xa0a000a0, |
182 | 0xa1a100a1, 0x62620062, 0x54540054, 0x1e1e001e, 0xe0e000e0, 0x64640064, | 183 | 0xa1a100a1, 0x62620062, 0x54540054, 0x1e1e001e, 0xe0e000e0, 0x64640064, |
183 | 0x10100010, 0x00000000, 0xa3a300a3, 0x75750075, 0x8a8a008a, 0xe6e600e6, | 184 | 0x10100010, 0x00000000, 0xa3a300a3, 0x75750075, 0x8a8a008a, 0xe6e600e6, |
184 | 0x09090009, 0xdddd00dd, 0x87870087, 0x83830083, 0xcdcd00cd, 0x90900090, | 185 | 0x09090009, 0xdddd00dd, 0x87870087, 0x83830083, 0xcdcd00cd, 0x90900090, |
185 | 0x73730073, 0xf6f600f6, 0x9d9d009d, 0xbfbf00bf, 0x52520052, 0xd8d800d8, | 186 | 0x73730073, 0xf6f600f6, 0x9d9d009d, 0xbfbf00bf, 0x52520052, 0xd8d800d8, |
186 | 0xc8c800c8, 0xc6c600c6, 0x81810081, 0x6f6f006f, 0x13130013, 0x63630063, | 187 | 0xc8c800c8, 0xc6c600c6, 0x81810081, 0x6f6f006f, 0x13130013, 0x63630063, |
187 | 0xe9e900e9, 0xa7a700a7, 0x9f9f009f, 0xbcbc00bc, 0x29290029, 0xf9f900f9, | 188 | 0xe9e900e9, 0xa7a700a7, 0x9f9f009f, 0xbcbc00bc, 0x29290029, 0xf9f900f9, |
188 | 0x2f2f002f, 0xb4b400b4, 0x78780078, 0x06060006, 0xe7e700e7, 0x71710071, | 189 | 0x2f2f002f, 0xb4b400b4, 0x78780078, 0x06060006, 0xe7e700e7, 0x71710071, |
189 | 0xd4d400d4, 0xabab00ab, 0x88880088, 0x8d8d008d, 0x72720072, 0xb9b900b9, | 190 | 0xd4d400d4, 0xabab00ab, 0x88880088, 0x8d8d008d, 0x72720072, 0xb9b900b9, |
190 | 0xf8f800f8, 0xacac00ac, 0x36360036, 0x2a2a002a, 0x3c3c003c, 0xf1f100f1, | 191 | 0xf8f800f8, 0xacac00ac, 0x36360036, 0x2a2a002a, 0x3c3c003c, 0xf1f100f1, |
191 | 0x40400040, 0xd3d300d3, 0xbbbb00bb, 0x43430043, 0x15150015, 0xadad00ad, | 192 | 0x40400040, 0xd3d300d3, 0xbbbb00bb, 0x43430043, 0x15150015, 0xadad00ad, |
192 | 0x77770077, 0x80800080, 0x82820082, 0xecec00ec, 0x27270027, 0xe5e500e5, | 193 | 0x77770077, 0x80800080, 0x82820082, 0xecec00ec, 0x27270027, 0xe5e500e5, |
193 | 0x85850085, 0x35350035, 0x0c0c000c, 0x41410041, 0xefef00ef, 0x93930093, | 194 | 0x85850085, 0x35350035, 0x0c0c000c, 0x41410041, 0xefef00ef, 0x93930093, |
194 | 0x19190019, 0x21210021, 0x0e0e000e, 0x4e4e004e, 0x65650065, 0xbdbd00bd, | 195 | 0x19190019, 0x21210021, 0x0e0e000e, 0x4e4e004e, 0x65650065, 0xbdbd00bd, |
195 | 0xb8b800b8, 0x8f8f008f, 0xebeb00eb, 0xcece00ce, 0x30300030, 0x5f5f005f, | 196 | 0xb8b800b8, 0x8f8f008f, 0xebeb00eb, 0xcece00ce, 0x30300030, 0x5f5f005f, |
196 | 0xc5c500c5, 0x1a1a001a, 0xe1e100e1, 0xcaca00ca, 0x47470047, 0x3d3d003d, | 197 | 0xc5c500c5, 0x1a1a001a, 0xe1e100e1, 0xcaca00ca, 0x47470047, 0x3d3d003d, |
197 | 0x01010001, 0xd6d600d6, 0x56560056, 0x4d4d004d, 0x0d0d000d, 0x66660066, | 198 | 0x01010001, 0xd6d600d6, 0x56560056, 0x4d4d004d, 0x0d0d000d, 0x66660066, |
198 | 0xcccc00cc, 0x2d2d002d, 0x12120012, 0x20200020, 0xb1b100b1, 0x99990099, | 199 | 0xcccc00cc, 0x2d2d002d, 0x12120012, 0x20200020, 0xb1b100b1, 0x99990099, |
199 | 0x4c4c004c, 0xc2c200c2, 0x7e7e007e, 0x05050005, 0xb7b700b7, 0x31310031, | 200 | 0x4c4c004c, 0xc2c200c2, 0x7e7e007e, 0x05050005, 0xb7b700b7, 0x31310031, |
200 | 0x17170017, 0xd7d700d7, 0x58580058, 0x61610061, 0x1b1b001b, 0x1c1c001c, | 201 | 0x17170017, 0xd7d700d7, 0x58580058, 0x61610061, 0x1b1b001b, 0x1c1c001c, |
201 | 0x0f0f000f, 0x16160016, 0x18180018, 0x22220022, 0x44440044, 0xb2b200b2, | 202 | 0x0f0f000f, 0x16160016, 0x18180018, 0x22220022, 0x44440044, 0xb2b200b2, |
202 | 0xb5b500b5, 0x91910091, 0x08080008, 0xa8a800a8, 0xfcfc00fc, 0x50500050, | 203 | 0xb5b500b5, 0x91910091, 0x08080008, 0xa8a800a8, 0xfcfc00fc, 0x50500050, |
203 | 0xd0d000d0, 0x7d7d007d, 0x89890089, 0x97970097, 0x5b5b005b, 0x95950095, | 204 | 0xd0d000d0, 0x7d7d007d, 0x89890089, 0x97970097, 0x5b5b005b, 0x95950095, |
204 | 0xffff00ff, 0xd2d200d2, 0xc4c400c4, 0x48480048, 0xf7f700f7, 0xdbdb00db, | 205 | 0xffff00ff, 0xd2d200d2, 0xc4c400c4, 0x48480048, 0xf7f700f7, 0xdbdb00db, |
205 | 0x03030003, 0xdada00da, 0x3f3f003f, 0x94940094, 0x5c5c005c, 0x02020002, | 206 | 0x03030003, 0xdada00da, 0x3f3f003f, 0x94940094, 0x5c5c005c, 0x02020002, |
206 | 0x4a4a004a, 0x33330033, 0x67670067, 0xf3f300f3, 0x7f7f007f, 0xe2e200e2, | 207 | 0x4a4a004a, 0x33330033, 0x67670067, 0xf3f300f3, 0x7f7f007f, 0xe2e200e2, |
207 | 0x9b9b009b, 0x26260026, 0x37370037, 0x3b3b003b, 0x96960096, 0x4b4b004b, | 208 | 0x9b9b009b, 0x26260026, 0x37370037, 0x3b3b003b, 0x96960096, 0x4b4b004b, |
208 | 0xbebe00be, 0x2e2e002e, 0x79790079, 0x8c8c008c, 0x6e6e006e, 0x8e8e008e, | 209 | 0xbebe00be, 0x2e2e002e, 0x79790079, 0x8c8c008c, 0x6e6e006e, 0x8e8e008e, |
209 | 0xf5f500f5, 0xb6b600b6, 0xfdfd00fd, 0x59590059, 0x98980098, 0x6a6a006a, | 210 | 0xf5f500f5, 0xb6b600b6, 0xfdfd00fd, 0x59590059, 0x98980098, 0x6a6a006a, |
210 | 0x46460046, 0xbaba00ba, 0x25250025, 0x42420042, 0xa2a200a2, 0xfafa00fa, | 211 | 0x46460046, 0xbaba00ba, 0x25250025, 0x42420042, 0xa2a200a2, 0xfafa00fa, |
211 | 0x07070007, 0x55550055, 0xeeee00ee, 0x0a0a000a, 0x49490049, 0x68680068, | 212 | 0x07070007, 0x55550055, 0xeeee00ee, 0x0a0a000a, 0x49490049, 0x68680068, |
212 | 0x38380038, 0xa4a400a4, 0x28280028, 0x7b7b007b, 0xc9c900c9, 0xc1c100c1, | 213 | 0x38380038, 0xa4a400a4, 0x28280028, 0x7b7b007b, 0xc9c900c9, 0xc1c100c1, |
213 | 0xe3e300e3, 0xf4f400f4, 0xc7c700c7, 0x9e9e009e }, | 214 | 0xe3e300e3, 0xf4f400f4, 0xc7c700c7, 0x9e9e009e }, |
214 | { 0x00e0e0e0, 0x00050505, 0x00585858, 0x00d9d9d9, 0x00676767, 0x004e4e4e, | 215 | { 0x00e0e0e0, 0x00050505, 0x00585858, 0x00d9d9d9, 0x00676767, 0x004e4e4e, |
215 | 0x00818181, 0x00cbcbcb, 0x00c9c9c9, 0x000b0b0b, 0x00aeaeae, 0x006a6a6a, | 216 | 0x00818181, 0x00cbcbcb, 0x00c9c9c9, 0x000b0b0b, 0x00aeaeae, 0x006a6a6a, |
216 | 0x00d5d5d5, 0x00181818, 0x005d5d5d, 0x00828282, 0x00464646, 0x00dfdfdf, | 217 | 0x00d5d5d5, 0x00181818, 0x005d5d5d, 0x00828282, 0x00464646, 0x00dfdfdf, |
217 | 0x00d6d6d6, 0x00272727, 0x008a8a8a, 0x00323232, 0x004b4b4b, 0x00424242, | 218 | 0x00d6d6d6, 0x00272727, 0x008a8a8a, 0x00323232, 0x004b4b4b, 0x00424242, |
218 | 0x00dbdbdb, 0x001c1c1c, 0x009e9e9e, 0x009c9c9c, 0x003a3a3a, 0x00cacaca, | 219 | 0x00dbdbdb, 0x001c1c1c, 0x009e9e9e, 0x009c9c9c, 0x003a3a3a, 0x00cacaca, |
219 | 0x00252525, 0x007b7b7b, 0x000d0d0d, 0x00717171, 0x005f5f5f, 0x001f1f1f, | 220 | 0x00252525, 0x007b7b7b, 0x000d0d0d, 0x00717171, 0x005f5f5f, 0x001f1f1f, |
220 | 0x00f8f8f8, 0x00d7d7d7, 0x003e3e3e, 0x009d9d9d, 0x007c7c7c, 0x00606060, | 221 | 0x00f8f8f8, 0x00d7d7d7, 0x003e3e3e, 0x009d9d9d, 0x007c7c7c, 0x00606060, |
221 | 0x00b9b9b9, 0x00bebebe, 0x00bcbcbc, 0x008b8b8b, 0x00161616, 0x00343434, | 222 | 0x00b9b9b9, 0x00bebebe, 0x00bcbcbc, 0x008b8b8b, 0x00161616, 0x00343434, |
222 | 0x004d4d4d, 0x00c3c3c3, 0x00727272, 0x00959595, 0x00ababab, 0x008e8e8e, | 223 | 0x004d4d4d, 0x00c3c3c3, 0x00727272, 0x00959595, 0x00ababab, 0x008e8e8e, |
223 | 0x00bababa, 0x007a7a7a, 0x00b3b3b3, 0x00020202, 0x00b4b4b4, 0x00adadad, | 224 | 0x00bababa, 0x007a7a7a, 0x00b3b3b3, 0x00020202, 0x00b4b4b4, 0x00adadad, |
224 | 0x00a2a2a2, 0x00acacac, 0x00d8d8d8, 0x009a9a9a, 0x00171717, 0x001a1a1a, | 225 | 0x00a2a2a2, 0x00acacac, 0x00d8d8d8, 0x009a9a9a, 0x00171717, 0x001a1a1a, |
225 | 0x00353535, 0x00cccccc, 0x00f7f7f7, 0x00999999, 0x00616161, 0x005a5a5a, | 226 | 0x00353535, 0x00cccccc, 0x00f7f7f7, 0x00999999, 0x00616161, 0x005a5a5a, |
226 | 0x00e8e8e8, 0x00242424, 0x00565656, 0x00404040, 0x00e1e1e1, 0x00636363, | 227 | 0x00e8e8e8, 0x00242424, 0x00565656, 0x00404040, 0x00e1e1e1, 0x00636363, |
227 | 0x00090909, 0x00333333, 0x00bfbfbf, 0x00989898, 0x00979797, 0x00858585, | 228 | 0x00090909, 0x00333333, 0x00bfbfbf, 0x00989898, 0x00979797, 0x00858585, |
228 | 0x00686868, 0x00fcfcfc, 0x00ececec, 0x000a0a0a, 0x00dadada, 0x006f6f6f, | 229 | 0x00686868, 0x00fcfcfc, 0x00ececec, 0x000a0a0a, 0x00dadada, 0x006f6f6f, |
229 | 0x00535353, 0x00626262, 0x00a3a3a3, 0x002e2e2e, 0x00080808, 0x00afafaf, | 230 | 0x00535353, 0x00626262, 0x00a3a3a3, 0x002e2e2e, 0x00080808, 0x00afafaf, |
230 | 0x00282828, 0x00b0b0b0, 0x00747474, 0x00c2c2c2, 0x00bdbdbd, 0x00363636, | 231 | 0x00282828, 0x00b0b0b0, 0x00747474, 0x00c2c2c2, 0x00bdbdbd, 0x00363636, |
231 | 0x00222222, 0x00383838, 0x00646464, 0x001e1e1e, 0x00393939, 0x002c2c2c, | 232 | 0x00222222, 0x00383838, 0x00646464, 0x001e1e1e, 0x00393939, 0x002c2c2c, |
232 | 0x00a6a6a6, 0x00303030, 0x00e5e5e5, 0x00444444, 0x00fdfdfd, 0x00888888, | 233 | 0x00a6a6a6, 0x00303030, 0x00e5e5e5, 0x00444444, 0x00fdfdfd, 0x00888888, |
233 | 0x009f9f9f, 0x00656565, 0x00878787, 0x006b6b6b, 0x00f4f4f4, 0x00232323, | 234 | 0x009f9f9f, 0x00656565, 0x00878787, 0x006b6b6b, 0x00f4f4f4, 0x00232323, |
234 | 0x00484848, 0x00101010, 0x00d1d1d1, 0x00515151, 0x00c0c0c0, 0x00f9f9f9, | 235 | 0x00484848, 0x00101010, 0x00d1d1d1, 0x00515151, 0x00c0c0c0, 0x00f9f9f9, |
235 | 0x00d2d2d2, 0x00a0a0a0, 0x00555555, 0x00a1a1a1, 0x00414141, 0x00fafafa, | 236 | 0x00d2d2d2, 0x00a0a0a0, 0x00555555, 0x00a1a1a1, 0x00414141, 0x00fafafa, |
236 | 0x00434343, 0x00131313, 0x00c4c4c4, 0x002f2f2f, 0x00a8a8a8, 0x00b6b6b6, | 237 | 0x00434343, 0x00131313, 0x00c4c4c4, 0x002f2f2f, 0x00a8a8a8, 0x00b6b6b6, |
237 | 0x003c3c3c, 0x002b2b2b, 0x00c1c1c1, 0x00ffffff, 0x00c8c8c8, 0x00a5a5a5, | 238 | 0x003c3c3c, 0x002b2b2b, 0x00c1c1c1, 0x00ffffff, 0x00c8c8c8, 0x00a5a5a5, |
238 | 0x00202020, 0x00898989, 0x00000000, 0x00909090, 0x00474747, 0x00efefef, | 239 | 0x00202020, 0x00898989, 0x00000000, 0x00909090, 0x00474747, 0x00efefef, |
239 | 0x00eaeaea, 0x00b7b7b7, 0x00151515, 0x00060606, 0x00cdcdcd, 0x00b5b5b5, | 240 | 0x00eaeaea, 0x00b7b7b7, 0x00151515, 0x00060606, 0x00cdcdcd, 0x00b5b5b5, |
240 | 0x00121212, 0x007e7e7e, 0x00bbbbbb, 0x00292929, 0x000f0f0f, 0x00b8b8b8, | 241 | 0x00121212, 0x007e7e7e, 0x00bbbbbb, 0x00292929, 0x000f0f0f, 0x00b8b8b8, |
241 | 0x00070707, 0x00040404, 0x009b9b9b, 0x00949494, 0x00212121, 0x00666666, | 242 | 0x00070707, 0x00040404, 0x009b9b9b, 0x00949494, 0x00212121, 0x00666666, |
242 | 0x00e6e6e6, 0x00cecece, 0x00ededed, 0x00e7e7e7, 0x003b3b3b, 0x00fefefe, | 243 | 0x00e6e6e6, 0x00cecece, 0x00ededed, 0x00e7e7e7, 0x003b3b3b, 0x00fefefe, |
243 | 0x007f7f7f, 0x00c5c5c5, 0x00a4a4a4, 0x00373737, 0x00b1b1b1, 0x004c4c4c, | 244 | 0x007f7f7f, 0x00c5c5c5, 0x00a4a4a4, 0x00373737, 0x00b1b1b1, 0x004c4c4c, |
244 | 0x00919191, 0x006e6e6e, 0x008d8d8d, 0x00767676, 0x00030303, 0x002d2d2d, | 245 | 0x00919191, 0x006e6e6e, 0x008d8d8d, 0x00767676, 0x00030303, 0x002d2d2d, |
245 | 0x00dedede, 0x00969696, 0x00262626, 0x007d7d7d, 0x00c6c6c6, 0x005c5c5c, | 246 | 0x00dedede, 0x00969696, 0x00262626, 0x007d7d7d, 0x00c6c6c6, 0x005c5c5c, |
246 | 0x00d3d3d3, 0x00f2f2f2, 0x004f4f4f, 0x00191919, 0x003f3f3f, 0x00dcdcdc, | 247 | 0x00d3d3d3, 0x00f2f2f2, 0x004f4f4f, 0x00191919, 0x003f3f3f, 0x00dcdcdc, |
247 | 0x00797979, 0x001d1d1d, 0x00525252, 0x00ebebeb, 0x00f3f3f3, 0x006d6d6d, | 248 | 0x00797979, 0x001d1d1d, 0x00525252, 0x00ebebeb, 0x00f3f3f3, 0x006d6d6d, |
248 | 0x005e5e5e, 0x00fbfbfb, 0x00696969, 0x00b2b2b2, 0x00f0f0f0, 0x00313131, | 249 | 0x005e5e5e, 0x00fbfbfb, 0x00696969, 0x00b2b2b2, 0x00f0f0f0, 0x00313131, |
249 | 0x000c0c0c, 0x00d4d4d4, 0x00cfcfcf, 0x008c8c8c, 0x00e2e2e2, 0x00757575, | 250 | 0x000c0c0c, 0x00d4d4d4, 0x00cfcfcf, 0x008c8c8c, 0x00e2e2e2, 0x00757575, |
250 | 0x00a9a9a9, 0x004a4a4a, 0x00575757, 0x00848484, 0x00111111, 0x00454545, | 251 | 0x00a9a9a9, 0x004a4a4a, 0x00575757, 0x00848484, 0x00111111, 0x00454545, |
251 | 0x001b1b1b, 0x00f5f5f5, 0x00e4e4e4, 0x000e0e0e, 0x00737373, 0x00aaaaaa, | 252 | 0x001b1b1b, 0x00f5f5f5, 0x00e4e4e4, 0x000e0e0e, 0x00737373, 0x00aaaaaa, |
252 | 0x00f1f1f1, 0x00dddddd, 0x00595959, 0x00141414, 0x006c6c6c, 0x00929292, | 253 | 0x00f1f1f1, 0x00dddddd, 0x00595959, 0x00141414, 0x006c6c6c, 0x00929292, |
253 | 0x00545454, 0x00d0d0d0, 0x00787878, 0x00707070, 0x00e3e3e3, 0x00494949, | 254 | 0x00545454, 0x00d0d0d0, 0x00787878, 0x00707070, 0x00e3e3e3, 0x00494949, |
254 | 0x00808080, 0x00505050, 0x00a7a7a7, 0x00f6f6f6, 0x00777777, 0x00939393, | 255 | 0x00808080, 0x00505050, 0x00a7a7a7, 0x00f6f6f6, 0x00777777, 0x00939393, |
255 | 0x00868686, 0x00838383, 0x002a2a2a, 0x00c7c7c7, 0x005b5b5b, 0x00e9e9e9, | 256 | 0x00868686, 0x00838383, 0x002a2a2a, 0x00c7c7c7, 0x005b5b5b, 0x00e9e9e9, |
256 | 0x00eeeeee, 0x008f8f8f, 0x00010101, 0x003d3d3d }, | 257 | 0x00eeeeee, 0x008f8f8f, 0x00010101, 0x003d3d3d }, |
257 | { 0x38003838, 0x41004141, 0x16001616, 0x76007676, 0xd900d9d9, 0x93009393, | 258 | { 0x38003838, 0x41004141, 0x16001616, 0x76007676, 0xd900d9d9, 0x93009393, |
258 | 0x60006060, 0xf200f2f2, 0x72007272, 0xc200c2c2, 0xab00abab, 0x9a009a9a, | 259 | 0x60006060, 0xf200f2f2, 0x72007272, 0xc200c2c2, 0xab00abab, 0x9a009a9a, |
259 | 0x75007575, 0x06000606, 0x57005757, 0xa000a0a0, 0x91009191, 0xf700f7f7, | 260 | 0x75007575, 0x06000606, 0x57005757, 0xa000a0a0, 0x91009191, 0xf700f7f7, |
260 | 0xb500b5b5, 0xc900c9c9, 0xa200a2a2, 0x8c008c8c, 0xd200d2d2, 0x90009090, | 261 | 0xb500b5b5, 0xc900c9c9, 0xa200a2a2, 0x8c008c8c, 0xd200d2d2, 0x90009090, |
261 | 0xf600f6f6, 0x07000707, 0xa700a7a7, 0x27002727, 0x8e008e8e, 0xb200b2b2, | 262 | 0xf600f6f6, 0x07000707, 0xa700a7a7, 0x27002727, 0x8e008e8e, 0xb200b2b2, |
262 | 0x49004949, 0xde00dede, 0x43004343, 0x5c005c5c, 0xd700d7d7, 0xc700c7c7, | 263 | 0x49004949, 0xde00dede, 0x43004343, 0x5c005c5c, 0xd700d7d7, 0xc700c7c7, |
263 | 0x3e003e3e, 0xf500f5f5, 0x8f008f8f, 0x67006767, 0x1f001f1f, 0x18001818, | 264 | 0x3e003e3e, 0xf500f5f5, 0x8f008f8f, 0x67006767, 0x1f001f1f, 0x18001818, |
264 | 0x6e006e6e, 0xaf00afaf, 0x2f002f2f, 0xe200e2e2, 0x85008585, 0x0d000d0d, | 265 | 0x6e006e6e, 0xaf00afaf, 0x2f002f2f, 0xe200e2e2, 0x85008585, 0x0d000d0d, |
265 | 0x53005353, 0xf000f0f0, 0x9c009c9c, 0x65006565, 0xea00eaea, 0xa300a3a3, | 266 | 0x53005353, 0xf000f0f0, 0x9c009c9c, 0x65006565, 0xea00eaea, 0xa300a3a3, |
266 | 0xae00aeae, 0x9e009e9e, 0xec00ecec, 0x80008080, 0x2d002d2d, 0x6b006b6b, | 267 | 0xae00aeae, 0x9e009e9e, 0xec00ecec, 0x80008080, 0x2d002d2d, 0x6b006b6b, |
267 | 0xa800a8a8, 0x2b002b2b, 0x36003636, 0xa600a6a6, 0xc500c5c5, 0x86008686, | 268 | 0xa800a8a8, 0x2b002b2b, 0x36003636, 0xa600a6a6, 0xc500c5c5, 0x86008686, |
268 | 0x4d004d4d, 0x33003333, 0xfd00fdfd, 0x66006666, 0x58005858, 0x96009696, | 269 | 0x4d004d4d, 0x33003333, 0xfd00fdfd, 0x66006666, 0x58005858, 0x96009696, |
269 | 0x3a003a3a, 0x09000909, 0x95009595, 0x10001010, 0x78007878, 0xd800d8d8, | 270 | 0x3a003a3a, 0x09000909, 0x95009595, 0x10001010, 0x78007878, 0xd800d8d8, |
270 | 0x42004242, 0xcc00cccc, 0xef00efef, 0x26002626, 0xe500e5e5, 0x61006161, | 271 | 0x42004242, 0xcc00cccc, 0xef00efef, 0x26002626, 0xe500e5e5, 0x61006161, |
271 | 0x1a001a1a, 0x3f003f3f, 0x3b003b3b, 0x82008282, 0xb600b6b6, 0xdb00dbdb, | 272 | 0x1a001a1a, 0x3f003f3f, 0x3b003b3b, 0x82008282, 0xb600b6b6, 0xdb00dbdb, |
272 | 0xd400d4d4, 0x98009898, 0xe800e8e8, 0x8b008b8b, 0x02000202, 0xeb00ebeb, | 273 | 0xd400d4d4, 0x98009898, 0xe800e8e8, 0x8b008b8b, 0x02000202, 0xeb00ebeb, |
273 | 0x0a000a0a, 0x2c002c2c, 0x1d001d1d, 0xb000b0b0, 0x6f006f6f, 0x8d008d8d, | 274 | 0x0a000a0a, 0x2c002c2c, 0x1d001d1d, 0xb000b0b0, 0x6f006f6f, 0x8d008d8d, |
274 | 0x88008888, 0x0e000e0e, 0x19001919, 0x87008787, 0x4e004e4e, 0x0b000b0b, | 275 | 0x88008888, 0x0e000e0e, 0x19001919, 0x87008787, 0x4e004e4e, 0x0b000b0b, |
275 | 0xa900a9a9, 0x0c000c0c, 0x79007979, 0x11001111, 0x7f007f7f, 0x22002222, | 276 | 0xa900a9a9, 0x0c000c0c, 0x79007979, 0x11001111, 0x7f007f7f, 0x22002222, |
276 | 0xe700e7e7, 0x59005959, 0xe100e1e1, 0xda00dada, 0x3d003d3d, 0xc800c8c8, | 277 | 0xe700e7e7, 0x59005959, 0xe100e1e1, 0xda00dada, 0x3d003d3d, 0xc800c8c8, |
277 | 0x12001212, 0x04000404, 0x74007474, 0x54005454, 0x30003030, 0x7e007e7e, | 278 | 0x12001212, 0x04000404, 0x74007474, 0x54005454, 0x30003030, 0x7e007e7e, |
278 | 0xb400b4b4, 0x28002828, 0x55005555, 0x68006868, 0x50005050, 0xbe00bebe, | 279 | 0xb400b4b4, 0x28002828, 0x55005555, 0x68006868, 0x50005050, 0xbe00bebe, |
279 | 0xd000d0d0, 0xc400c4c4, 0x31003131, 0xcb00cbcb, 0x2a002a2a, 0xad00adad, | 280 | 0xd000d0d0, 0xc400c4c4, 0x31003131, 0xcb00cbcb, 0x2a002a2a, 0xad00adad, |
280 | 0x0f000f0f, 0xca00caca, 0x70007070, 0xff00ffff, 0x32003232, 0x69006969, | 281 | 0x0f000f0f, 0xca00caca, 0x70007070, 0xff00ffff, 0x32003232, 0x69006969, |
281 | 0x08000808, 0x62006262, 0x00000000, 0x24002424, 0xd100d1d1, 0xfb00fbfb, | 282 | 0x08000808, 0x62006262, 0x00000000, 0x24002424, 0xd100d1d1, 0xfb00fbfb, |
282 | 0xba00baba, 0xed00eded, 0x45004545, 0x81008181, 0x73007373, 0x6d006d6d, | 283 | 0xba00baba, 0xed00eded, 0x45004545, 0x81008181, 0x73007373, 0x6d006d6d, |
283 | 0x84008484, 0x9f009f9f, 0xee00eeee, 0x4a004a4a, 0xc300c3c3, 0x2e002e2e, | 284 | 0x84008484, 0x9f009f9f, 0xee00eeee, 0x4a004a4a, 0xc300c3c3, 0x2e002e2e, |
284 | 0xc100c1c1, 0x01000101, 0xe600e6e6, 0x25002525, 0x48004848, 0x99009999, | 285 | 0xc100c1c1, 0x01000101, 0xe600e6e6, 0x25002525, 0x48004848, 0x99009999, |
285 | 0xb900b9b9, 0xb300b3b3, 0x7b007b7b, 0xf900f9f9, 0xce00cece, 0xbf00bfbf, | 286 | 0xb900b9b9, 0xb300b3b3, 0x7b007b7b, 0xf900f9f9, 0xce00cece, 0xbf00bfbf, |
286 | 0xdf00dfdf, 0x71007171, 0x29002929, 0xcd00cdcd, 0x6c006c6c, 0x13001313, | 287 | 0xdf00dfdf, 0x71007171, 0x29002929, 0xcd00cdcd, 0x6c006c6c, 0x13001313, |
287 | 0x64006464, 0x9b009b9b, 0x63006363, 0x9d009d9d, 0xc000c0c0, 0x4b004b4b, | 288 | 0x64006464, 0x9b009b9b, 0x63006363, 0x9d009d9d, 0xc000c0c0, 0x4b004b4b, |
288 | 0xb700b7b7, 0xa500a5a5, 0x89008989, 0x5f005f5f, 0xb100b1b1, 0x17001717, | 289 | 0xb700b7b7, 0xa500a5a5, 0x89008989, 0x5f005f5f, 0xb100b1b1, 0x17001717, |
289 | 0xf400f4f4, 0xbc00bcbc, 0xd300d3d3, 0x46004646, 0xcf00cfcf, 0x37003737, | 290 | 0xf400f4f4, 0xbc00bcbc, 0xd300d3d3, 0x46004646, 0xcf00cfcf, 0x37003737, |
290 | 0x5e005e5e, 0x47004747, 0x94009494, 0xfa00fafa, 0xfc00fcfc, 0x5b005b5b, | 291 | 0x5e005e5e, 0x47004747, 0x94009494, 0xfa00fafa, 0xfc00fcfc, 0x5b005b5b, |
291 | 0x97009797, 0xfe00fefe, 0x5a005a5a, 0xac00acac, 0x3c003c3c, 0x4c004c4c, | 292 | 0x97009797, 0xfe00fefe, 0x5a005a5a, 0xac00acac, 0x3c003c3c, 0x4c004c4c, |
292 | 0x03000303, 0x35003535, 0xf300f3f3, 0x23002323, 0xb800b8b8, 0x5d005d5d, | 293 | 0x03000303, 0x35003535, 0xf300f3f3, 0x23002323, 0xb800b8b8, 0x5d005d5d, |
293 | 0x6a006a6a, 0x92009292, 0xd500d5d5, 0x21002121, 0x44004444, 0x51005151, | 294 | 0x6a006a6a, 0x92009292, 0xd500d5d5, 0x21002121, 0x44004444, 0x51005151, |
294 | 0xc600c6c6, 0x7d007d7d, 0x39003939, 0x83008383, 0xdc00dcdc, 0xaa00aaaa, | 295 | 0xc600c6c6, 0x7d007d7d, 0x39003939, 0x83008383, 0xdc00dcdc, 0xaa00aaaa, |
295 | 0x7c007c7c, 0x77007777, 0x56005656, 0x05000505, 0x1b001b1b, 0xa400a4a4, | 296 | 0x7c007c7c, 0x77007777, 0x56005656, 0x05000505, 0x1b001b1b, 0xa400a4a4, |
296 | 0x15001515, 0x34003434, 0x1e001e1e, 0x1c001c1c, 0xf800f8f8, 0x52005252, | 297 | 0x15001515, 0x34003434, 0x1e001e1e, 0x1c001c1c, 0xf800f8f8, 0x52005252, |
297 | 0x20002020, 0x14001414, 0xe900e9e9, 0xbd00bdbd, 0xdd00dddd, 0xe400e4e4, | 298 | 0x20002020, 0x14001414, 0xe900e9e9, 0xbd00bdbd, 0xdd00dddd, 0xe400e4e4, |
298 | 0xa100a1a1, 0xe000e0e0, 0x8a008a8a, 0xf100f1f1, 0xd600d6d6, 0x7a007a7a, | 299 | 0xa100a1a1, 0xe000e0e0, 0x8a008a8a, 0xf100f1f1, 0xd600d6d6, 0x7a007a7a, |
299 | 0xbb00bbbb, 0xe300e3e3, 0x40004040, 0x4f004f4f } | 300 | 0xbb00bbbb, 0xe300e3e3, 0x40004040, 0x4f004f4f } |
300 | }; | 301 | }; |
301 | 302 | ||
@@ -310,156 +311,151 @@ static const u32 SIGMA[] = { | |||
310 | * This version does not attempt to minimize amount of temporary | 311 | * This version does not attempt to minimize amount of temporary |
311 | * variables, but instead explicitly exposes algorithm's parallelism. | 312 | * variables, but instead explicitly exposes algorithm's parallelism. |
312 | * It is therefore most appropriate for platforms with not less than | 313 | * It is therefore most appropriate for platforms with not less than |
313 | * ~16 registers. For platforms with less registers [well, x86 to be | 314 | * ~16 registers. For platforms with fewer registers [well, x86 to be |
314 | * specific] assembler version should be/is provided anyway... | 315 | * specific] assembler version should be/is provided anyway... |
315 | */ | 316 | */ |
316 | #define Camellia_Feistel(_s0,_s1,_s2,_s3,_key) do {\ | 317 | #define Camellia_Feistel(_s0,_s1,_s2,_s3,_key) \ |
317 | u32 _t0,_t1,_t2,_t3;\ | 318 | do { \ |
318 | \ | 319 | u32 _t0, _t1, _t2, _t3; \ |
319 | _t0 = _s0 ^ (_key)[0];\ | 320 | _t0 = _s0 ^ (_key)[0]; \ |
320 | _t3 = SBOX4_4404[_t0&0xff];\ | 321 | _t3 = SBOX4_4404[_t0 & 0xff]; \ |
321 | _t1 = _s1 ^ (_key)[1];\ | 322 | _t1 = _s1 ^ (_key)[1]; \ |
322 | _t3 ^= SBOX3_3033[(_t0 >> 8)&0xff];\ | 323 | _t3 ^= SBOX3_3033[(_t0 >> 8) & 0xff]; \ |
323 | _t2 = SBOX1_1110[_t1&0xff];\ | 324 | _t2 = SBOX1_1110[_t1 & 0xff]; \ |
324 | _t3 ^= SBOX2_0222[(_t0 >> 16)&0xff];\ | 325 | _t3 ^= SBOX2_0222[(_t0 >> 16) & 0xff]; \ |
325 | _t2 ^= SBOX4_4404[(_t1 >> 8)&0xff];\ | 326 | _t2 ^= SBOX4_4404[(_t1 >> 8) & 0xff]; \ |
326 | _t3 ^= SBOX1_1110[(_t0 >> 24)];\ | 327 | _t3 ^= SBOX1_1110[(_t0 >> 24)]; \ |
327 | _t2 ^= _t3;\ | 328 | _t2 ^= _t3; \ |
328 | _t3 = RightRotate(_t3,8);\ | 329 | _t3 = RightRotate(_t3, 8); \ |
329 | _t2 ^= SBOX3_3033[(_t1 >> 16)&0xff];\ | 330 | _t2 ^= SBOX3_3033[(_t1 >> 16) & 0xff]; \ |
330 | _s3 ^= _t3;\ | 331 | _s3 ^= _t3; \ |
331 | _t2 ^= SBOX2_0222[(_t1 >> 24)];\ | 332 | _t2 ^= SBOX2_0222[(_t1 >> 24)]; \ |
332 | _s2 ^= _t2; \ | 333 | _s2 ^= _t2; \ |
333 | _s3 ^= _t2;\ | 334 | _s3 ^= _t2; \ |
334 | } while(0) | 335 | } while(0) |
335 | 336 | ||
336 | /* | 337 | /* |
337 | * Note that n has to be less than 32. Rotations for larger amount | 338 | * Note that n has to be less than 32. Rotations for larger amount |
338 | * of bits are achieved by "rotating" order of s-elements and | 339 | * of bits are achieved by "rotating" order of s-elements and |
339 | * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32). | 340 | * adjusting n accordingly, e.g. RotLeft128(s1, s2, s3, s0, n - 32). |
340 | */ | 341 | */ |
341 | #define RotLeft128(_s0,_s1,_s2,_s3,_n) do {\ | 342 | #define RotLeft128(_s0, _s1, _s2, _s3, _n) \ |
342 | u32 _t0=_s0>>(32-_n);\ | 343 | do { \ |
343 | _s0 = (_s0<<_n) | (_s1>>(32-_n));\ | 344 | u32 _t0 = _s0 >> (32 - _n); \ |
344 | _s1 = (_s1<<_n) | (_s2>>(32-_n));\ | 345 | _s0 = (_s0 << _n) | (_s1 >> (32 - _n)); \ |
345 | _s2 = (_s2<<_n) | (_s3>>(32-_n));\ | 346 | _s1 = (_s1 << _n) | (_s2 >> (32 - _n)); \ |
346 | _s3 = (_s3<<_n) | _t0;\ | 347 | _s2 = (_s2 << _n) | (_s3 >> (32 - _n)); \ |
348 | _s3 = (_s3 << _n) | _t0; \ | ||
347 | } while (0) | 349 | } while (0) |
348 | 350 | ||
349 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) | 351 | int |
350 | { | 352 | Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) |
351 | u32 s0,s1,s2,s3; | 353 | { |
354 | u32 s0, s1, s2, s3; | ||
352 | 355 | ||
353 | k[0] = s0 = GETU32(rawKey); | 356 | k[0] = s0 = GETU32(rawKey); |
354 | k[1] = s1 = GETU32(rawKey+4); | 357 | k[1] = s1 = GETU32(rawKey + 4); |
355 | k[2] = s2 = GETU32(rawKey+8); | 358 | k[2] = s2 = GETU32(rawKey + 8); |
356 | k[3] = s3 = GETU32(rawKey+12); | 359 | k[3] = s3 = GETU32(rawKey + 12); |
357 | 360 | ||
358 | if (keyBitLength != 128) | 361 | if (keyBitLength != 128) { |
359 | { | 362 | k[8] = s0 = GETU32(rawKey + 16); |
360 | k[8] = s0 = GETU32(rawKey+16); | 363 | k[9] = s1 = GETU32(rawKey + 20); |
361 | k[9] = s1 = GETU32(rawKey+20); | 364 | if (keyBitLength == 192) { |
362 | if (keyBitLength == 192) | ||
363 | { | ||
364 | k[10] = s2 = ~s0; | 365 | k[10] = s2 = ~s0; |
365 | k[11] = s3 = ~s1; | 366 | k[11] = s3 = ~s1; |
366 | } | 367 | } else { |
367 | else | 368 | k[10] = s2 = GETU32(rawKey + 24); |
368 | { | 369 | k[11] = s3 = GETU32(rawKey + 28); |
369 | k[10] = s2 = GETU32(rawKey+24); | ||
370 | k[11] = s3 = GETU32(rawKey+28); | ||
371 | } | ||
372 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | ||
373 | } | 370 | } |
371 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | ||
372 | } | ||
374 | 373 | ||
375 | /* Use the Feistel routine to scramble the key material */ | 374 | /* Use the Feistel routine to scramble the key material */ |
376 | Camellia_Feistel(s0,s1,s2,s3,SIGMA+0); | 375 | Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); |
377 | Camellia_Feistel(s2,s3,s0,s1,SIGMA+2); | 376 | Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); |
378 | 377 | ||
379 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | 378 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; |
380 | Camellia_Feistel(s0,s1,s2,s3,SIGMA+4); | 379 | Camellia_Feistel(s0, s1, s2, s3, SIGMA + 4); |
381 | Camellia_Feistel(s2,s3,s0,s1,SIGMA+6); | 380 | Camellia_Feistel(s2, s3, s0, s1, SIGMA + 6); |
382 | 381 | ||
383 | /* Fill the keyTable. Requires many block rotations. */ | 382 | /* Fill the keyTable. Requires many block rotations. */ |
384 | if (keyBitLength == 128) | 383 | if (keyBitLength == 128) { |
385 | { | ||
386 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; | 384 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; |
387 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 15 */ | 385 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */ |
388 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 386 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
389 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 30 */ | 387 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 30 */ |
390 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; | 388 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; |
391 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 45 */ | 389 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 45 */ |
392 | k[24] = s0, k[25] = s1; | 390 | k[24] = s0, k[25] = s1; |
393 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 60 */ | 391 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 60 */ |
394 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; | 392 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; |
395 | RotLeft128(s1,s2,s3,s0,2); /* KA <<< 94 */ | 393 | RotLeft128(s1, s2, s3, s0, 2); /* KA <<< 94 */ |
396 | k[40] = s1, k[41] = s2, k[42] = s3, k[43] = s0; | 394 | k[40] = s1, k[41] = s2, k[42] = s3, k[43] = s0; |
397 | RotLeft128(s1,s2,s3,s0,17); /* KA <<<111 */ | 395 | RotLeft128(s1, s2, s3, s0, 17); /* KA <<<111 */ |
398 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; | 396 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; |
399 | 397 | ||
400 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; | 398 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; |
401 | RotLeft128(s0,s1,s2,s3,15); /* KL <<< 15 */ | 399 | RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 15 */ |
402 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; | 400 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; |
403 | RotLeft128(s0,s1,s2,s3,30); /* KL <<< 45 */ | 401 | RotLeft128(s0, s1, s2, s3, 30); /* KL <<< 45 */ |
404 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; | 402 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; |
405 | RotLeft128(s0,s1,s2,s3,15); /* KL <<< 60 */ | 403 | RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 60 */ |
406 | k[26] = s2, k[27] = s3; | 404 | k[26] = s2, k[27] = s3; |
407 | RotLeft128(s0,s1,s2,s3,17); /* KL <<< 77 */ | 405 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 77 */ |
408 | k[32] = s0, k[33] = s1, k[34] = s2, k[35] = s3; | 406 | k[32] = s0, k[33] = s1, k[34] = s2, k[35] = s3; |
409 | RotLeft128(s0,s1,s2,s3,17); /* KL <<< 94 */ | 407 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 94 */ |
410 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; | 408 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; |
411 | RotLeft128(s0,s1,s2,s3,17); /* KL <<<111 */ | 409 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<<111 */ |
412 | k[44] = s0, k[45] = s1, k[46] = s2, k[47] = s3; | 410 | k[44] = s0, k[45] = s1, k[46] = s2, k[47] = s3; |
413 | 411 | ||
414 | return 3; /* grand rounds */ | 412 | return 3; /* grand rounds */ |
415 | } | 413 | } else { |
416 | else | ||
417 | { | ||
418 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 414 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
419 | s0 ^= k[8], s1 ^= k[9], s2 ^=k[10], s3 ^=k[11]; | 415 | s0 ^= k[8], s1 ^= k[9], s2 ^=k[10], s3 ^=k[11]; |
420 | Camellia_Feistel(s0,s1,s2,s3,(SIGMA+8)); | 416 | Camellia_Feistel(s0, s1, s2, s3, (SIGMA + 8)); |
421 | Camellia_Feistel(s2,s3,s0,s1,(SIGMA+10)); | 417 | Camellia_Feistel(s2, s3, s0, s1, (SIGMA + 10)); |
422 | 418 | ||
423 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; | 419 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; |
424 | RotLeft128(s0,s1,s2,s3,30); /* KB <<< 30 */ | 420 | RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 30 */ |
425 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; | 421 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; |
426 | RotLeft128(s0,s1,s2,s3,30); /* KB <<< 60 */ | 422 | RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 60 */ |
427 | k[40] = s0, k[41] = s1, k[42] = s2, k[43] = s3; | 423 | k[40] = s0, k[41] = s1, k[42] = s2, k[43] = s3; |
428 | RotLeft128(s1,s2,s3,s0,19); /* KB <<<111 */ | 424 | RotLeft128(s1, s2, s3, s0, 19); /* KB <<<111 */ |
429 | k[64] = s1, k[65] = s2, k[66] = s3, k[67] = s0; | 425 | k[64] = s1, k[65] = s2, k[66] = s3, k[67] = s0; |
430 | 426 | ||
431 | s0 = k[ 8], s1 = k[ 9], s2 = k[10], s3 = k[11]; | 427 | s0 = k[ 8], s1 = k[ 9], s2 = k[10], s3 = k[11]; |
432 | RotLeft128(s0,s1,s2,s3,15); /* KR <<< 15 */ | 428 | RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 15 */ |
433 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; | 429 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; |
434 | RotLeft128(s0,s1,s2,s3,15); /* KR <<< 30 */ | 430 | RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 30 */ |
435 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; | 431 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; |
436 | RotLeft128(s0,s1,s2,s3,30); /* KR <<< 60 */ | 432 | RotLeft128(s0, s1, s2, s3, 30); /* KR <<< 60 */ |
437 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; | 433 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; |
438 | RotLeft128(s1,s2,s3,s0,2); /* KR <<< 94 */ | 434 | RotLeft128(s1, s2, s3, s0, 2); /* KR <<< 94 */ |
439 | k[52] = s1, k[53] = s2, k[54] = s3, k[55] = s0; | 435 | k[52] = s1, k[53] = s2, k[54] = s3, k[55] = s0; |
440 | 436 | ||
441 | s0 = k[12], s1 = k[13], s2 = k[14], s3 = k[15]; | 437 | s0 = k[12], s1 = k[13], s2 = k[14], s3 = k[15]; |
442 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 15 */ | 438 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */ |
443 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 439 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
444 | RotLeft128(s0,s1,s2,s3,30); /* KA <<< 45 */ | 440 | RotLeft128(s0, s1, s2, s3, 30); /* KA <<< 45 */ |
445 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; | 441 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; |
446 | /* KA <<< 77 */ | 442 | /* KA <<< 77 */ |
447 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; | 443 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; |
448 | RotLeft128(s1,s2,s3,s0,17); /* KA <<< 94 */ | 444 | RotLeft128(s1, s2, s3, s0, 17); /* KA <<< 94 */ |
449 | k[56] = s1, k[57] = s2, k[58] = s3, k[59] = s0; | 445 | k[56] = s1, k[57] = s2, k[58] = s3, k[59] = s0; |
450 | 446 | ||
451 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; | 447 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; |
452 | RotLeft128(s1,s2,s3,s0,13); /* KL <<< 45 */ | 448 | RotLeft128(s1, s2, s3, s0, 13); /* KL <<< 45 */ |
453 | k[24] = s1, k[25] = s2, k[26] = s3, k[27] = s0; | 449 | k[24] = s1, k[25] = s2, k[26] = s3, k[27] = s0; |
454 | RotLeft128(s1,s2,s3,s0,15); /* KL <<< 60 */ | 450 | RotLeft128(s1, s2, s3, s0, 15); /* KL <<< 60 */ |
455 | k[32] = s1, k[33] = s2, k[34] = s3, k[35] = s0; | 451 | k[32] = s1, k[33] = s2, k[34] = s3, k[35] = s0; |
456 | RotLeft128(s1,s2,s3,s0,17); /* KL <<< 77 */ | 452 | RotLeft128(s1, s2, s3, s0, 17); /* KL <<< 77 */ |
457 | k[44] = s1, k[45] = s2, k[46] = s3, k[47] = s0; | 453 | k[44] = s1, k[45] = s2, k[46] = s3, k[47] = s0; |
458 | RotLeft128(s2,s3,s0,s1,2); /* KL <<<111 */ | 454 | RotLeft128(s2, s3, s0, s1, 2); /* KL <<<111 */ |
459 | k[60] = s2, k[61] = s3, k[62] = s0, k[63] = s1; | 455 | k[60] = s2, k[61] = s3, k[62] = s0, k[63] = s1; |
460 | 456 | ||
461 | return 4; /* grand rounds */ | 457 | return 4; /* grand rounds */ |
462 | } | 458 | } |
463 | /* | 459 | /* |
464 | * It is possible to perform certain precalculations, which | 460 | * It is possible to perform certain precalculations, which |
465 | * would spare few cycles in block procedure. It's not done, | 461 | * would spare few cycles in block procedure. It's not done, |
@@ -467,33 +463,34 @@ int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) | |||
467 | * setup and block procedures, negatively affecting overall | 463 | * setup and block procedures, negatively affecting overall |
468 | * throughput in applications operating on short messages | 464 | * throughput in applications operating on short messages |
469 | * and volatile keys. | 465 | * and volatile keys. |
470 | */ | 466 | */ |
471 | } | 467 | } |
472 | 468 | ||
473 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | 469 | void |
474 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | 470 | Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], |
475 | { | 471 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) |
476 | u32 s0,s1,s2,s3; | 472 | { |
477 | const u32 *k = keyTable,*kend = keyTable+grandRounds*16; | 473 | u32 s0, s1, s2, s3; |
478 | 474 | const u32 *k = keyTable, *kend = keyTable + grandRounds * 16; | |
479 | s0 = GETU32(plaintext) ^ k[0]; | 475 | |
480 | s1 = GETU32(plaintext+4) ^ k[1]; | 476 | s0 = GETU32(plaintext) ^ k[0]; |
481 | s2 = GETU32(plaintext+8) ^ k[2]; | 477 | s1 = GETU32(plaintext + 4) ^ k[1]; |
482 | s3 = GETU32(plaintext+12) ^ k[3]; | 478 | s2 = GETU32(plaintext + 8) ^ k[2]; |
479 | s3 = GETU32(plaintext + 12) ^ k[3]; | ||
483 | k += 4; | 480 | k += 4; |
484 | 481 | ||
485 | while (1) | 482 | while (1) { |
486 | { | ||
487 | /* Camellia makes 6 Feistel rounds */ | 483 | /* Camellia makes 6 Feistel rounds */ |
488 | Camellia_Feistel(s0,s1,s2,s3,k+0); | 484 | Camellia_Feistel(s0, s1, s2, s3, k + 0); |
489 | Camellia_Feistel(s2,s3,s0,s1,k+2); | 485 | Camellia_Feistel(s2, s3, s0, s1, k + 2); |
490 | Camellia_Feistel(s0,s1,s2,s3,k+4); | 486 | Camellia_Feistel(s0, s1, s2, s3, k + 4); |
491 | Camellia_Feistel(s2,s3,s0,s1,k+6); | 487 | Camellia_Feistel(s2, s3, s0, s1, k + 6); |
492 | Camellia_Feistel(s0,s1,s2,s3,k+8); | 488 | Camellia_Feistel(s0, s1, s2, s3, k + 8); |
493 | Camellia_Feistel(s2,s3,s0,s1,k+10); | 489 | Camellia_Feistel(s2, s3, s0, s1, k + 10); |
494 | k += 12; | 490 | k += 12; |
495 | 491 | ||
496 | if (k == kend) break; | 492 | if (k == kend) |
493 | break; | ||
497 | 494 | ||
498 | /* This is the same function as the diffusion function D | 495 | /* This is the same function as the diffusion function D |
499 | * of the accompanying documentation. See section 3.2 | 496 | * of the accompanying documentation. See section 3.2 |
@@ -503,45 +500,48 @@ void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | |||
503 | s0 ^= s1 | k[1]; | 500 | s0 ^= s1 | k[1]; |
504 | s3 ^= LeftRotate(s2 & k[2], 1); | 501 | s3 ^= LeftRotate(s2 & k[2], 1); |
505 | k += 4; | 502 | k += 4; |
506 | } | ||
507 | |||
508 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; | ||
509 | |||
510 | PUTU32(ciphertext, s2); | ||
511 | PUTU32(ciphertext+4, s3); | ||
512 | PUTU32(ciphertext+8, s0); | ||
513 | PUTU32(ciphertext+12,s1); | ||
514 | } | ||
515 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | ||
516 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | ||
517 | { | ||
518 | Camellia_EncryptBlock_Rounds(keyBitLength==128?3:4, | ||
519 | plaintext,keyTable,ciphertext); | ||
520 | } | 503 | } |
521 | 504 | ||
522 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | 505 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; |
523 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]) | ||
524 | { | ||
525 | u32 s0,s1,s2,s3; | ||
526 | const u32 *k = keyTable+grandRounds*16,*kend = keyTable+4; | ||
527 | 506 | ||
528 | s0 = GETU32(ciphertext) ^ k[0]; | 507 | PUTU32(ciphertext, s2); |
529 | s1 = GETU32(ciphertext+4) ^ k[1]; | 508 | PUTU32(ciphertext + 4, s3); |
530 | s2 = GETU32(ciphertext+8) ^ k[2]; | 509 | PUTU32(ciphertext + 8, s0); |
510 | PUTU32(ciphertext + 12, s1); | ||
511 | } | ||
512 | |||
513 | void | ||
514 | Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | ||
515 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | ||
516 | { | ||
517 | Camellia_EncryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, | ||
518 | plaintext, keyTable, ciphertext); | ||
519 | } | ||
520 | |||
521 | void | ||
522 | Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | ||
523 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]) | ||
524 | { | ||
525 | u32 s0, s1, s2, s3; | ||
526 | const u32 *k = keyTable+grandRounds * 16, *kend = keyTable+4; | ||
527 | |||
528 | s0 = GETU32(ciphertext) ^ k[0]; | ||
529 | s1 = GETU32(ciphertext+4) ^ k[1]; | ||
530 | s2 = GETU32(ciphertext+8) ^ k[2]; | ||
531 | s3 = GETU32(ciphertext+12) ^ k[3]; | 531 | s3 = GETU32(ciphertext+12) ^ k[3]; |
532 | 532 | ||
533 | while (1) | 533 | while (1) { |
534 | { | ||
535 | /* Camellia makes 6 Feistel rounds */ | 534 | /* Camellia makes 6 Feistel rounds */ |
536 | k -= 12; | 535 | k -= 12; |
537 | Camellia_Feistel(s0,s1,s2,s3,k+10); | 536 | Camellia_Feistel(s0, s1, s2, s3, k+10); |
538 | Camellia_Feistel(s2,s3,s0,s1,k+8); | 537 | Camellia_Feistel(s2, s3, s0, s1, k+8); |
539 | Camellia_Feistel(s0,s1,s2,s3,k+6); | 538 | Camellia_Feistel(s0, s1, s2, s3, k+6); |
540 | Camellia_Feistel(s2,s3,s0,s1,k+4); | 539 | Camellia_Feistel(s2, s3, s0, s1, k+4); |
541 | Camellia_Feistel(s0,s1,s2,s3,k+2); | 540 | Camellia_Feistel(s0, s1, s2, s3, k+2); |
542 | Camellia_Feistel(s2,s3,s0,s1,k+0); | 541 | Camellia_Feistel(s2, s3, s0, s1, k+0); |
543 | 542 | ||
544 | if (k == kend) break; | 543 | if (k == kend) |
544 | break; | ||
545 | 545 | ||
546 | /* This is the same function as the diffusion function D | 546 | /* This is the same function as the diffusion function D |
547 | * of the accompanying documentation. See section 3.2 | 547 | * of the accompanying documentation. See section 3.2 |
@@ -551,19 +551,21 @@ void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | |||
551 | s2 ^= s3 | k[1]; | 551 | s2 ^= s3 | k[1]; |
552 | s0 ^= s1 | k[3]; | 552 | s0 ^= s1 | k[3]; |
553 | s3 ^= LeftRotate(s2 & k[0], 1); | 553 | s3 ^= LeftRotate(s2 & k[0], 1); |
554 | } | 554 | } |
555 | 555 | ||
556 | k -= 4; | 556 | k -= 4; |
557 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; | 557 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; |
558 | 558 | ||
559 | PUTU32(plaintext, s2); | 559 | PUTU32(plaintext, s2); |
560 | PUTU32(plaintext+4, s3); | 560 | PUTU32(plaintext+4, s3); |
561 | PUTU32(plaintext+8, s0); | 561 | PUTU32(plaintext+8, s0); |
562 | PUTU32(plaintext+12,s1); | 562 | PUTU32(plaintext+12, s1); |
563 | } | 563 | } |
564 | void Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[], | 564 | |
565 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | 565 | void |
566 | { | 566 | Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[], |
567 | Camellia_DecryptBlock_Rounds(keyBitLength==128?3:4, | 567 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) |
568 | plaintext,keyTable,ciphertext); | 568 | { |
569 | } | 569 | Camellia_DecryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, |
570 | plaintext, keyTable, ciphertext); | ||
571 | } | ||
diff --git a/src/lib/libcrypto/camellia/camellia.h b/src/lib/libcrypto/camellia/camellia.h index a294f97571..b9b5f792b1 100644 --- a/src/lib/libcrypto/camellia/camellia.h +++ b/src/lib/libcrypto/camellia/camellia.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: camellia.h,v 1.4 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: camellia.h,v 1.5 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -78,14 +78,13 @@ extern "C" { | |||
78 | 78 | ||
79 | typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match with WORD */ | 79 | typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match with WORD */ |
80 | 80 | ||
81 | struct camellia_key_st | 81 | struct camellia_key_st { |
82 | { | 82 | union { |
83 | union { | ||
84 | double d; /* ensures 64-bit align */ | 83 | double d; /* ensures 64-bit align */ |
85 | KEY_TABLE_TYPE rd_key; | 84 | KEY_TABLE_TYPE rd_key; |
86 | } u; | 85 | } u; |
87 | int grand_rounds; | 86 | int grand_rounds; |
88 | }; | 87 | }; |
89 | typedef struct camellia_key_st CAMELLIA_KEY; | 88 | typedef struct camellia_key_st CAMELLIA_KEY; |
90 | 89 | ||
91 | int Camellia_set_key(const unsigned char *userKey, const int bits, | 90 | int Camellia_set_key(const unsigned char *userKey, const int bits, |
diff --git a/src/lib/libcrypto/camellia/cmll_cbc.c b/src/lib/libcrypto/camellia/cmll_cbc.c index b21857c572..6567e5deb6 100644 --- a/src/lib/libcrypto/camellia/cmll_cbc.c +++ b/src/lib/libcrypto/camellia/cmll_cbc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_cbc.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_cbc.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -52,13 +52,14 @@ | |||
52 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
53 | #include <openssl/modes.h> | 53 | #include <openssl/modes.h> |
54 | 54 | ||
55 | void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
56 | size_t len, const CAMELLIA_KEY *key, | 56 | Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, |
57 | unsigned char *ivec, const int enc) | 57 | const CAMELLIA_KEY *key, unsigned char *ivec, const int enc) |
58 | { | 58 | { |
59 | |||
60 | if (enc) | 59 | if (enc) |
61 | CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)Camellia_encrypt); | 60 | CRYPTO_cbc128_encrypt(in, out, len, key, ivec, |
61 | (block128_f)Camellia_encrypt); | ||
62 | else | 62 | else |
63 | CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)Camellia_decrypt); | 63 | CRYPTO_cbc128_decrypt(in, out, len, key, ivec, |
64 | } | 64 | (block128_f)Camellia_decrypt); |
65 | } | ||
diff --git a/src/lib/libcrypto/camellia/cmll_cfb.c b/src/lib/libcrypto/camellia/cmll_cfb.c index 17e6cca332..755ab9f8bf 100644 --- a/src/lib/libcrypto/camellia/cmll_cfb.c +++ b/src/lib/libcrypto/camellia/cmll_cfb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_cfb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_cfb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -109,31 +109,36 @@ | |||
109 | #include <openssl/modes.h> | 109 | #include <openssl/modes.h> |
110 | 110 | ||
111 | 111 | ||
112 | /* The input and output encrypted as though 128bit cfb mode is being | 112 | /* |
113 | * The input and output encrypted as though 128bit cfb mode is being | ||
113 | * used. The extra state information to record how much of the | 114 | * used. The extra state information to record how much of the |
114 | * 128bit block we have used is contained in *num; | 115 | * 128bit block we have used is contained in *num; |
115 | */ | 116 | */ |
116 | 117 | ||
117 | void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, | 118 | void |
118 | size_t length, const CAMELLIA_KEY *key, | 119 | Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, |
119 | unsigned char *ivec, int *num, const int enc) | 120 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, |
120 | { | 121 | const int enc) |
121 | 122 | { | |
122 | CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | 123 | CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc, |
123 | } | 124 | (block128_f)Camellia_encrypt); |
125 | } | ||
124 | 126 | ||
125 | /* N.B. This expects the input to be packed, MS bit first */ | 127 | /* N.B. This expects the input to be packed, MS bit first */ |
126 | void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, | 128 | void |
127 | size_t length, const CAMELLIA_KEY *key, | 129 | Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, |
128 | unsigned char *ivec, int *num, const int enc) | 130 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, |
129 | { | 131 | const int enc) |
130 | CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | 132 | { |
131 | } | 133 | CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc, |
132 | 134 | (block128_f)Camellia_encrypt); | |
133 | void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | 135 | } |
134 | size_t length, const CAMELLIA_KEY *key, | ||
135 | unsigned char *ivec, int *num, const int enc) | ||
136 | { | ||
137 | CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | ||
138 | } | ||
139 | 136 | ||
137 | void | ||
138 | Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | ||
139 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, | ||
140 | const int enc) | ||
141 | { | ||
142 | CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc, | ||
143 | (block128_f)Camellia_encrypt); | ||
144 | } | ||
diff --git a/src/lib/libcrypto/camellia/cmll_ctr.c b/src/lib/libcrypto/camellia/cmll_ctr.c index 80fbcaf925..59a351ee1b 100644 --- a/src/lib/libcrypto/camellia/cmll_ctr.c +++ b/src/lib/libcrypto/camellia/cmll_ctr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ctr.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ctr.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -52,13 +52,12 @@ | |||
52 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
53 | #include <openssl/modes.h> | 53 | #include <openssl/modes.h> |
54 | 54 | ||
55 | void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
56 | size_t length, const CAMELLIA_KEY *key, | 56 | Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, |
57 | unsigned char ivec[CAMELLIA_BLOCK_SIZE], | 57 | size_t length, const CAMELLIA_KEY *key, |
58 | unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], | 58 | unsigned char ivec[CAMELLIA_BLOCK_SIZE], |
59 | unsigned int *num) | 59 | unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num) |
60 | { | 60 | { |
61 | 61 | CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num, | |
62 | CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)Camellia_encrypt); | 62 | (block128_f)Camellia_encrypt); |
63 | } | 63 | } |
64 | |||
diff --git a/src/lib/libcrypto/camellia/cmll_ecb.c b/src/lib/libcrypto/camellia/cmll_ecb.c index 3054f277fe..1a65445202 100644 --- a/src/lib/libcrypto/camellia/cmll_ecb.c +++ b/src/lib/libcrypto/camellia/cmll_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ecb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ecb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -49,26 +49,15 @@ | |||
49 | * | 49 | * |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #ifndef CAMELLIA_DEBUG | ||
53 | # ifndef NDEBUG | ||
54 | # define NDEBUG | ||
55 | # endif | ||
56 | #endif | ||
57 | #include <assert.h> | ||
58 | |||
59 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
60 | #include "cmll_locl.h" | 53 | #include "cmll_locl.h" |
61 | 54 | ||
62 | void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
63 | const CAMELLIA_KEY *key, const int enc) | 56 | Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, |
64 | { | 57 | const CAMELLIA_KEY *key, const int enc) |
65 | 58 | { | |
66 | assert(in && out && key); | ||
67 | assert((CAMELLIA_ENCRYPT == enc)||(CAMELLIA_DECRYPT == enc)); | ||
68 | |||
69 | if (CAMELLIA_ENCRYPT == enc) | 59 | if (CAMELLIA_ENCRYPT == enc) |
70 | Camellia_encrypt(in, out, key); | 60 | Camellia_encrypt(in, out, key); |
71 | else | 61 | else |
72 | Camellia_decrypt(in, out, key); | 62 | Camellia_decrypt(in, out, key); |
73 | } | 63 | } |
74 | |||
diff --git a/src/lib/libcrypto/camellia/cmll_locl.h b/src/lib/libcrypto/camellia/cmll_locl.h index 60055b0d18..8a4f540fbc 100644 --- a/src/lib/libcrypto/camellia/cmll_locl.h +++ b/src/lib/libcrypto/camellia/cmll_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_locl.h,v 1.4 2014/07/12 20:11:45 miod Exp $ */ | 1 | /* $OpenBSD: cmll_locl.h,v 1.5 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . | 3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . |
4 | * ALL RIGHTS RESERVED. | 4 | * ALL RIGHTS RESERVED. |
@@ -72,13 +72,14 @@ typedef unsigned int u32; | |||
72 | typedef unsigned char u8; | 72 | typedef unsigned char u8; |
73 | 73 | ||
74 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, | 74 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, |
75 | KEY_TABLE_TYPE keyTable); | 75 | KEY_TABLE_TYPE keyTable); |
76 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | 76 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], |
77 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); | 77 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); |
78 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | 78 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], |
79 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); | 79 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); |
80 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | 80 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], |
81 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); | 81 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); |
82 | void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], | 82 | void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], |
83 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); | 83 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); |
84 | |||
84 | #endif /* #ifndef HEADER_CAMELLIA_LOCL_H */ | 85 | #endif /* #ifndef HEADER_CAMELLIA_LOCL_H */ |
diff --git a/src/lib/libcrypto/camellia/cmll_misc.c b/src/lib/libcrypto/camellia/cmll_misc.c index 68b8dc44ff..2fa61dc637 100644 --- a/src/lib/libcrypto/camellia/cmll_misc.c +++ b/src/lib/libcrypto/camellia/cmll_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_misc.c,v 1.5 2014/07/12 20:11:45 miod Exp $ */ | 1 | /* $OpenBSD: cmll_misc.c,v 1.6 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -48,7 +48,7 @@ | |||
48 | * ==================================================================== | 48 | * ==================================================================== |
49 | * | 49 | * |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #include <openssl/opensslv.h> | 52 | #include <openssl/opensslv.h> |
53 | #include <openssl/crypto.h> | 53 | #include <openssl/crypto.h> |
54 | #include <openssl/camellia.h> | 54 | #include <openssl/camellia.h> |
diff --git a/src/lib/libcrypto/camellia/cmll_ofb.c b/src/lib/libcrypto/camellia/cmll_ofb.c index e276c2a626..cd3a65e2fa 100644 --- a/src/lib/libcrypto/camellia/cmll_ofb.c +++ b/src/lib/libcrypto/camellia/cmll_ofb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ofb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ofb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -108,12 +108,15 @@ | |||
108 | #include <openssl/camellia.h> | 108 | #include <openssl/camellia.h> |
109 | #include <openssl/modes.h> | 109 | #include <openssl/modes.h> |
110 | 110 | ||
111 | /* The input and output encrypted as though 128bit ofb mode is being | 111 | /* |
112 | * The input and output encrypted as though 128bit ofb mode is being | ||
112 | * used. The extra state information to record how much of the | 113 | * used. The extra state information to record how much of the |
113 | * 128bit block we have used is contained in *num; | 114 | * 128bit block we have used is contained in *num; |
114 | */ | 115 | */ |
115 | void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, | 116 | void |
116 | size_t length, const CAMELLIA_KEY *key, | 117 | Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, |
117 | unsigned char *ivec, int *num) { | 118 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num) |
118 | CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)Camellia_encrypt); | 119 | { |
120 | CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num, | ||
121 | (block128_f)Camellia_encrypt); | ||
119 | } | 122 | } |
diff --git a/src/lib/libssl/src/crypto/camellia/camellia.c b/src/lib/libssl/src/crypto/camellia/camellia.c index fa925b72a9..f001b9847d 100644 --- a/src/lib/libssl/src/crypto/camellia/camellia.c +++ b/src/lib/libssl/src/crypto/camellia/camellia.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: camellia.c,v 1.8 2014/10/28 07:35:58 jsg Exp $ */ | 1 | /* $OpenBSD: camellia.c,v 1.9 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . | 3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . |
4 | * ALL RIGHTS RESERVED. | 4 | * ALL RIGHTS RESERVED. |
@@ -65,10 +65,11 @@ | |||
65 | * ==================================================================== | 65 | * ==================================================================== |
66 | */ | 66 | */ |
67 | 67 | ||
68 | /* Algorithm Specification | 68 | /* |
69 | http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html | 69 | * Algorithm Specification |
70 | */ | 70 | * http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html |
71 | 71 | */ | |
72 | |||
72 | /* | 73 | /* |
73 | * This release balances code size and performance. In particular key | 74 | * This release balances code size and performance. In particular key |
74 | * schedule setup is fully unrolled, because doing so *significantly* | 75 | * schedule setup is fully unrolled, because doing so *significantly* |
@@ -125,177 +126,177 @@ | |||
125 | #define SBOX2_0222 Camellia_SBOX[2] | 126 | #define SBOX2_0222 Camellia_SBOX[2] |
126 | #define SBOX3_3033 Camellia_SBOX[3] | 127 | #define SBOX3_3033 Camellia_SBOX[3] |
127 | static const u32 Camellia_SBOX[][256] = { | 128 | static const u32 Camellia_SBOX[][256] = { |
128 | { 0x70707000, 0x82828200, 0x2c2c2c00, 0xececec00, 0xb3b3b300, 0x27272700, | 129 | { 0x70707000, 0x82828200, 0x2c2c2c00, 0xececec00, 0xb3b3b300, 0x27272700, |
129 | 0xc0c0c000, 0xe5e5e500, 0xe4e4e400, 0x85858500, 0x57575700, 0x35353500, | 130 | 0xc0c0c000, 0xe5e5e500, 0xe4e4e400, 0x85858500, 0x57575700, 0x35353500, |
130 | 0xeaeaea00, 0x0c0c0c00, 0xaeaeae00, 0x41414100, 0x23232300, 0xefefef00, | 131 | 0xeaeaea00, 0x0c0c0c00, 0xaeaeae00, 0x41414100, 0x23232300, 0xefefef00, |
131 | 0x6b6b6b00, 0x93939300, 0x45454500, 0x19191900, 0xa5a5a500, 0x21212100, | 132 | 0x6b6b6b00, 0x93939300, 0x45454500, 0x19191900, 0xa5a5a500, 0x21212100, |
132 | 0xededed00, 0x0e0e0e00, 0x4f4f4f00, 0x4e4e4e00, 0x1d1d1d00, 0x65656500, | 133 | 0xededed00, 0x0e0e0e00, 0x4f4f4f00, 0x4e4e4e00, 0x1d1d1d00, 0x65656500, |
133 | 0x92929200, 0xbdbdbd00, 0x86868600, 0xb8b8b800, 0xafafaf00, 0x8f8f8f00, | 134 | 0x92929200, 0xbdbdbd00, 0x86868600, 0xb8b8b800, 0xafafaf00, 0x8f8f8f00, |
134 | 0x7c7c7c00, 0xebebeb00, 0x1f1f1f00, 0xcecece00, 0x3e3e3e00, 0x30303000, | 135 | 0x7c7c7c00, 0xebebeb00, 0x1f1f1f00, 0xcecece00, 0x3e3e3e00, 0x30303000, |
135 | 0xdcdcdc00, 0x5f5f5f00, 0x5e5e5e00, 0xc5c5c500, 0x0b0b0b00, 0x1a1a1a00, | 136 | 0xdcdcdc00, 0x5f5f5f00, 0x5e5e5e00, 0xc5c5c500, 0x0b0b0b00, 0x1a1a1a00, |
136 | 0xa6a6a600, 0xe1e1e100, 0x39393900, 0xcacaca00, 0xd5d5d500, 0x47474700, | 137 | 0xa6a6a600, 0xe1e1e100, 0x39393900, 0xcacaca00, 0xd5d5d500, 0x47474700, |
137 | 0x5d5d5d00, 0x3d3d3d00, 0xd9d9d900, 0x01010100, 0x5a5a5a00, 0xd6d6d600, | 138 | 0x5d5d5d00, 0x3d3d3d00, 0xd9d9d900, 0x01010100, 0x5a5a5a00, 0xd6d6d600, |
138 | 0x51515100, 0x56565600, 0x6c6c6c00, 0x4d4d4d00, 0x8b8b8b00, 0x0d0d0d00, | 139 | 0x51515100, 0x56565600, 0x6c6c6c00, 0x4d4d4d00, 0x8b8b8b00, 0x0d0d0d00, |
139 | 0x9a9a9a00, 0x66666600, 0xfbfbfb00, 0xcccccc00, 0xb0b0b000, 0x2d2d2d00, | 140 | 0x9a9a9a00, 0x66666600, 0xfbfbfb00, 0xcccccc00, 0xb0b0b000, 0x2d2d2d00, |
140 | 0x74747400, 0x12121200, 0x2b2b2b00, 0x20202000, 0xf0f0f000, 0xb1b1b100, | 141 | 0x74747400, 0x12121200, 0x2b2b2b00, 0x20202000, 0xf0f0f000, 0xb1b1b100, |
141 | 0x84848400, 0x99999900, 0xdfdfdf00, 0x4c4c4c00, 0xcbcbcb00, 0xc2c2c200, | 142 | 0x84848400, 0x99999900, 0xdfdfdf00, 0x4c4c4c00, 0xcbcbcb00, 0xc2c2c200, |
142 | 0x34343400, 0x7e7e7e00, 0x76767600, 0x05050500, 0x6d6d6d00, 0xb7b7b700, | 143 | 0x34343400, 0x7e7e7e00, 0x76767600, 0x05050500, 0x6d6d6d00, 0xb7b7b700, |
143 | 0xa9a9a900, 0x31313100, 0xd1d1d100, 0x17171700, 0x04040400, 0xd7d7d700, | 144 | 0xa9a9a900, 0x31313100, 0xd1d1d100, 0x17171700, 0x04040400, 0xd7d7d700, |
144 | 0x14141400, 0x58585800, 0x3a3a3a00, 0x61616100, 0xdedede00, 0x1b1b1b00, | 145 | 0x14141400, 0x58585800, 0x3a3a3a00, 0x61616100, 0xdedede00, 0x1b1b1b00, |
145 | 0x11111100, 0x1c1c1c00, 0x32323200, 0x0f0f0f00, 0x9c9c9c00, 0x16161600, | 146 | 0x11111100, 0x1c1c1c00, 0x32323200, 0x0f0f0f00, 0x9c9c9c00, 0x16161600, |
146 | 0x53535300, 0x18181800, 0xf2f2f200, 0x22222200, 0xfefefe00, 0x44444400, | 147 | 0x53535300, 0x18181800, 0xf2f2f200, 0x22222200, 0xfefefe00, 0x44444400, |
147 | 0xcfcfcf00, 0xb2b2b200, 0xc3c3c300, 0xb5b5b500, 0x7a7a7a00, 0x91919100, | 148 | 0xcfcfcf00, 0xb2b2b200, 0xc3c3c300, 0xb5b5b500, 0x7a7a7a00, 0x91919100, |
148 | 0x24242400, 0x08080800, 0xe8e8e800, 0xa8a8a800, 0x60606000, 0xfcfcfc00, | 149 | 0x24242400, 0x08080800, 0xe8e8e800, 0xa8a8a800, 0x60606000, 0xfcfcfc00, |
149 | 0x69696900, 0x50505000, 0xaaaaaa00, 0xd0d0d000, 0xa0a0a000, 0x7d7d7d00, | 150 | 0x69696900, 0x50505000, 0xaaaaaa00, 0xd0d0d000, 0xa0a0a000, 0x7d7d7d00, |
150 | 0xa1a1a100, 0x89898900, 0x62626200, 0x97979700, 0x54545400, 0x5b5b5b00, | 151 | 0xa1a1a100, 0x89898900, 0x62626200, 0x97979700, 0x54545400, 0x5b5b5b00, |
151 | 0x1e1e1e00, 0x95959500, 0xe0e0e000, 0xffffff00, 0x64646400, 0xd2d2d200, | 152 | 0x1e1e1e00, 0x95959500, 0xe0e0e000, 0xffffff00, 0x64646400, 0xd2d2d200, |
152 | 0x10101000, 0xc4c4c400, 0x00000000, 0x48484800, 0xa3a3a300, 0xf7f7f700, | 153 | 0x10101000, 0xc4c4c400, 0x00000000, 0x48484800, 0xa3a3a300, 0xf7f7f700, |
153 | 0x75757500, 0xdbdbdb00, 0x8a8a8a00, 0x03030300, 0xe6e6e600, 0xdadada00, | 154 | 0x75757500, 0xdbdbdb00, 0x8a8a8a00, 0x03030300, 0xe6e6e600, 0xdadada00, |
154 | 0x09090900, 0x3f3f3f00, 0xdddddd00, 0x94949400, 0x87878700, 0x5c5c5c00, | 155 | 0x09090900, 0x3f3f3f00, 0xdddddd00, 0x94949400, 0x87878700, 0x5c5c5c00, |
155 | 0x83838300, 0x02020200, 0xcdcdcd00, 0x4a4a4a00, 0x90909000, 0x33333300, | 156 | 0x83838300, 0x02020200, 0xcdcdcd00, 0x4a4a4a00, 0x90909000, 0x33333300, |
156 | 0x73737300, 0x67676700, 0xf6f6f600, 0xf3f3f300, 0x9d9d9d00, 0x7f7f7f00, | 157 | 0x73737300, 0x67676700, 0xf6f6f600, 0xf3f3f300, 0x9d9d9d00, 0x7f7f7f00, |
157 | 0xbfbfbf00, 0xe2e2e200, 0x52525200, 0x9b9b9b00, 0xd8d8d800, 0x26262600, | 158 | 0xbfbfbf00, 0xe2e2e200, 0x52525200, 0x9b9b9b00, 0xd8d8d800, 0x26262600, |
158 | 0xc8c8c800, 0x37373700, 0xc6c6c600, 0x3b3b3b00, 0x81818100, 0x96969600, | 159 | 0xc8c8c800, 0x37373700, 0xc6c6c600, 0x3b3b3b00, 0x81818100, 0x96969600, |
159 | 0x6f6f6f00, 0x4b4b4b00, 0x13131300, 0xbebebe00, 0x63636300, 0x2e2e2e00, | 160 | 0x6f6f6f00, 0x4b4b4b00, 0x13131300, 0xbebebe00, 0x63636300, 0x2e2e2e00, |
160 | 0xe9e9e900, 0x79797900, 0xa7a7a700, 0x8c8c8c00, 0x9f9f9f00, 0x6e6e6e00, | 161 | 0xe9e9e900, 0x79797900, 0xa7a7a700, 0x8c8c8c00, 0x9f9f9f00, 0x6e6e6e00, |
161 | 0xbcbcbc00, 0x8e8e8e00, 0x29292900, 0xf5f5f500, 0xf9f9f900, 0xb6b6b600, | 162 | 0xbcbcbc00, 0x8e8e8e00, 0x29292900, 0xf5f5f500, 0xf9f9f900, 0xb6b6b600, |
162 | 0x2f2f2f00, 0xfdfdfd00, 0xb4b4b400, 0x59595900, 0x78787800, 0x98989800, | 163 | 0x2f2f2f00, 0xfdfdfd00, 0xb4b4b400, 0x59595900, 0x78787800, 0x98989800, |
163 | 0x06060600, 0x6a6a6a00, 0xe7e7e700, 0x46464600, 0x71717100, 0xbababa00, | 164 | 0x06060600, 0x6a6a6a00, 0xe7e7e700, 0x46464600, 0x71717100, 0xbababa00, |
164 | 0xd4d4d400, 0x25252500, 0xababab00, 0x42424200, 0x88888800, 0xa2a2a200, | 165 | 0xd4d4d400, 0x25252500, 0xababab00, 0x42424200, 0x88888800, 0xa2a2a200, |
165 | 0x8d8d8d00, 0xfafafa00, 0x72727200, 0x07070700, 0xb9b9b900, 0x55555500, | 166 | 0x8d8d8d00, 0xfafafa00, 0x72727200, 0x07070700, 0xb9b9b900, 0x55555500, |
166 | 0xf8f8f800, 0xeeeeee00, 0xacacac00, 0x0a0a0a00, 0x36363600, 0x49494900, | 167 | 0xf8f8f800, 0xeeeeee00, 0xacacac00, 0x0a0a0a00, 0x36363600, 0x49494900, |
167 | 0x2a2a2a00, 0x68686800, 0x3c3c3c00, 0x38383800, 0xf1f1f100, 0xa4a4a400, | 168 | 0x2a2a2a00, 0x68686800, 0x3c3c3c00, 0x38383800, 0xf1f1f100, 0xa4a4a400, |
168 | 0x40404000, 0x28282800, 0xd3d3d300, 0x7b7b7b00, 0xbbbbbb00, 0xc9c9c900, | 169 | 0x40404000, 0x28282800, 0xd3d3d300, 0x7b7b7b00, 0xbbbbbb00, 0xc9c9c900, |
169 | 0x43434300, 0xc1c1c100, 0x15151500, 0xe3e3e300, 0xadadad00, 0xf4f4f400, | 170 | 0x43434300, 0xc1c1c100, 0x15151500, 0xe3e3e300, 0xadadad00, 0xf4f4f400, |
170 | 0x77777700, 0xc7c7c700, 0x80808000, 0x9e9e9e00 }, | 171 | 0x77777700, 0xc7c7c700, 0x80808000, 0x9e9e9e00 }, |
171 | { 0x70700070, 0x2c2c002c, 0xb3b300b3, 0xc0c000c0, 0xe4e400e4, 0x57570057, | 172 | { 0x70700070, 0x2c2c002c, 0xb3b300b3, 0xc0c000c0, 0xe4e400e4, 0x57570057, |
172 | 0xeaea00ea, 0xaeae00ae, 0x23230023, 0x6b6b006b, 0x45450045, 0xa5a500a5, | 173 | 0xeaea00ea, 0xaeae00ae, 0x23230023, 0x6b6b006b, 0x45450045, 0xa5a500a5, |
173 | 0xeded00ed, 0x4f4f004f, 0x1d1d001d, 0x92920092, 0x86860086, 0xafaf00af, | 174 | 0xeded00ed, 0x4f4f004f, 0x1d1d001d, 0x92920092, 0x86860086, 0xafaf00af, |
174 | 0x7c7c007c, 0x1f1f001f, 0x3e3e003e, 0xdcdc00dc, 0x5e5e005e, 0x0b0b000b, | 175 | 0x7c7c007c, 0x1f1f001f, 0x3e3e003e, 0xdcdc00dc, 0x5e5e005e, 0x0b0b000b, |
175 | 0xa6a600a6, 0x39390039, 0xd5d500d5, 0x5d5d005d, 0xd9d900d9, 0x5a5a005a, | 176 | 0xa6a600a6, 0x39390039, 0xd5d500d5, 0x5d5d005d, 0xd9d900d9, 0x5a5a005a, |
176 | 0x51510051, 0x6c6c006c, 0x8b8b008b, 0x9a9a009a, 0xfbfb00fb, 0xb0b000b0, | 177 | 0x51510051, 0x6c6c006c, 0x8b8b008b, 0x9a9a009a, 0xfbfb00fb, 0xb0b000b0, |
177 | 0x74740074, 0x2b2b002b, 0xf0f000f0, 0x84840084, 0xdfdf00df, 0xcbcb00cb, | 178 | 0x74740074, 0x2b2b002b, 0xf0f000f0, 0x84840084, 0xdfdf00df, 0xcbcb00cb, |
178 | 0x34340034, 0x76760076, 0x6d6d006d, 0xa9a900a9, 0xd1d100d1, 0x04040004, | 179 | 0x34340034, 0x76760076, 0x6d6d006d, 0xa9a900a9, 0xd1d100d1, 0x04040004, |
179 | 0x14140014, 0x3a3a003a, 0xdede00de, 0x11110011, 0x32320032, 0x9c9c009c, | 180 | 0x14140014, 0x3a3a003a, 0xdede00de, 0x11110011, 0x32320032, 0x9c9c009c, |
180 | 0x53530053, 0xf2f200f2, 0xfefe00fe, 0xcfcf00cf, 0xc3c300c3, 0x7a7a007a, | 181 | 0x53530053, 0xf2f200f2, 0xfefe00fe, 0xcfcf00cf, 0xc3c300c3, 0x7a7a007a, |
181 | 0x24240024, 0xe8e800e8, 0x60600060, 0x69690069, 0xaaaa00aa, 0xa0a000a0, | 182 | 0x24240024, 0xe8e800e8, 0x60600060, 0x69690069, 0xaaaa00aa, 0xa0a000a0, |
182 | 0xa1a100a1, 0x62620062, 0x54540054, 0x1e1e001e, 0xe0e000e0, 0x64640064, | 183 | 0xa1a100a1, 0x62620062, 0x54540054, 0x1e1e001e, 0xe0e000e0, 0x64640064, |
183 | 0x10100010, 0x00000000, 0xa3a300a3, 0x75750075, 0x8a8a008a, 0xe6e600e6, | 184 | 0x10100010, 0x00000000, 0xa3a300a3, 0x75750075, 0x8a8a008a, 0xe6e600e6, |
184 | 0x09090009, 0xdddd00dd, 0x87870087, 0x83830083, 0xcdcd00cd, 0x90900090, | 185 | 0x09090009, 0xdddd00dd, 0x87870087, 0x83830083, 0xcdcd00cd, 0x90900090, |
185 | 0x73730073, 0xf6f600f6, 0x9d9d009d, 0xbfbf00bf, 0x52520052, 0xd8d800d8, | 186 | 0x73730073, 0xf6f600f6, 0x9d9d009d, 0xbfbf00bf, 0x52520052, 0xd8d800d8, |
186 | 0xc8c800c8, 0xc6c600c6, 0x81810081, 0x6f6f006f, 0x13130013, 0x63630063, | 187 | 0xc8c800c8, 0xc6c600c6, 0x81810081, 0x6f6f006f, 0x13130013, 0x63630063, |
187 | 0xe9e900e9, 0xa7a700a7, 0x9f9f009f, 0xbcbc00bc, 0x29290029, 0xf9f900f9, | 188 | 0xe9e900e9, 0xa7a700a7, 0x9f9f009f, 0xbcbc00bc, 0x29290029, 0xf9f900f9, |
188 | 0x2f2f002f, 0xb4b400b4, 0x78780078, 0x06060006, 0xe7e700e7, 0x71710071, | 189 | 0x2f2f002f, 0xb4b400b4, 0x78780078, 0x06060006, 0xe7e700e7, 0x71710071, |
189 | 0xd4d400d4, 0xabab00ab, 0x88880088, 0x8d8d008d, 0x72720072, 0xb9b900b9, | 190 | 0xd4d400d4, 0xabab00ab, 0x88880088, 0x8d8d008d, 0x72720072, 0xb9b900b9, |
190 | 0xf8f800f8, 0xacac00ac, 0x36360036, 0x2a2a002a, 0x3c3c003c, 0xf1f100f1, | 191 | 0xf8f800f8, 0xacac00ac, 0x36360036, 0x2a2a002a, 0x3c3c003c, 0xf1f100f1, |
191 | 0x40400040, 0xd3d300d3, 0xbbbb00bb, 0x43430043, 0x15150015, 0xadad00ad, | 192 | 0x40400040, 0xd3d300d3, 0xbbbb00bb, 0x43430043, 0x15150015, 0xadad00ad, |
192 | 0x77770077, 0x80800080, 0x82820082, 0xecec00ec, 0x27270027, 0xe5e500e5, | 193 | 0x77770077, 0x80800080, 0x82820082, 0xecec00ec, 0x27270027, 0xe5e500e5, |
193 | 0x85850085, 0x35350035, 0x0c0c000c, 0x41410041, 0xefef00ef, 0x93930093, | 194 | 0x85850085, 0x35350035, 0x0c0c000c, 0x41410041, 0xefef00ef, 0x93930093, |
194 | 0x19190019, 0x21210021, 0x0e0e000e, 0x4e4e004e, 0x65650065, 0xbdbd00bd, | 195 | 0x19190019, 0x21210021, 0x0e0e000e, 0x4e4e004e, 0x65650065, 0xbdbd00bd, |
195 | 0xb8b800b8, 0x8f8f008f, 0xebeb00eb, 0xcece00ce, 0x30300030, 0x5f5f005f, | 196 | 0xb8b800b8, 0x8f8f008f, 0xebeb00eb, 0xcece00ce, 0x30300030, 0x5f5f005f, |
196 | 0xc5c500c5, 0x1a1a001a, 0xe1e100e1, 0xcaca00ca, 0x47470047, 0x3d3d003d, | 197 | 0xc5c500c5, 0x1a1a001a, 0xe1e100e1, 0xcaca00ca, 0x47470047, 0x3d3d003d, |
197 | 0x01010001, 0xd6d600d6, 0x56560056, 0x4d4d004d, 0x0d0d000d, 0x66660066, | 198 | 0x01010001, 0xd6d600d6, 0x56560056, 0x4d4d004d, 0x0d0d000d, 0x66660066, |
198 | 0xcccc00cc, 0x2d2d002d, 0x12120012, 0x20200020, 0xb1b100b1, 0x99990099, | 199 | 0xcccc00cc, 0x2d2d002d, 0x12120012, 0x20200020, 0xb1b100b1, 0x99990099, |
199 | 0x4c4c004c, 0xc2c200c2, 0x7e7e007e, 0x05050005, 0xb7b700b7, 0x31310031, | 200 | 0x4c4c004c, 0xc2c200c2, 0x7e7e007e, 0x05050005, 0xb7b700b7, 0x31310031, |
200 | 0x17170017, 0xd7d700d7, 0x58580058, 0x61610061, 0x1b1b001b, 0x1c1c001c, | 201 | 0x17170017, 0xd7d700d7, 0x58580058, 0x61610061, 0x1b1b001b, 0x1c1c001c, |
201 | 0x0f0f000f, 0x16160016, 0x18180018, 0x22220022, 0x44440044, 0xb2b200b2, | 202 | 0x0f0f000f, 0x16160016, 0x18180018, 0x22220022, 0x44440044, 0xb2b200b2, |
202 | 0xb5b500b5, 0x91910091, 0x08080008, 0xa8a800a8, 0xfcfc00fc, 0x50500050, | 203 | 0xb5b500b5, 0x91910091, 0x08080008, 0xa8a800a8, 0xfcfc00fc, 0x50500050, |
203 | 0xd0d000d0, 0x7d7d007d, 0x89890089, 0x97970097, 0x5b5b005b, 0x95950095, | 204 | 0xd0d000d0, 0x7d7d007d, 0x89890089, 0x97970097, 0x5b5b005b, 0x95950095, |
204 | 0xffff00ff, 0xd2d200d2, 0xc4c400c4, 0x48480048, 0xf7f700f7, 0xdbdb00db, | 205 | 0xffff00ff, 0xd2d200d2, 0xc4c400c4, 0x48480048, 0xf7f700f7, 0xdbdb00db, |
205 | 0x03030003, 0xdada00da, 0x3f3f003f, 0x94940094, 0x5c5c005c, 0x02020002, | 206 | 0x03030003, 0xdada00da, 0x3f3f003f, 0x94940094, 0x5c5c005c, 0x02020002, |
206 | 0x4a4a004a, 0x33330033, 0x67670067, 0xf3f300f3, 0x7f7f007f, 0xe2e200e2, | 207 | 0x4a4a004a, 0x33330033, 0x67670067, 0xf3f300f3, 0x7f7f007f, 0xe2e200e2, |
207 | 0x9b9b009b, 0x26260026, 0x37370037, 0x3b3b003b, 0x96960096, 0x4b4b004b, | 208 | 0x9b9b009b, 0x26260026, 0x37370037, 0x3b3b003b, 0x96960096, 0x4b4b004b, |
208 | 0xbebe00be, 0x2e2e002e, 0x79790079, 0x8c8c008c, 0x6e6e006e, 0x8e8e008e, | 209 | 0xbebe00be, 0x2e2e002e, 0x79790079, 0x8c8c008c, 0x6e6e006e, 0x8e8e008e, |
209 | 0xf5f500f5, 0xb6b600b6, 0xfdfd00fd, 0x59590059, 0x98980098, 0x6a6a006a, | 210 | 0xf5f500f5, 0xb6b600b6, 0xfdfd00fd, 0x59590059, 0x98980098, 0x6a6a006a, |
210 | 0x46460046, 0xbaba00ba, 0x25250025, 0x42420042, 0xa2a200a2, 0xfafa00fa, | 211 | 0x46460046, 0xbaba00ba, 0x25250025, 0x42420042, 0xa2a200a2, 0xfafa00fa, |
211 | 0x07070007, 0x55550055, 0xeeee00ee, 0x0a0a000a, 0x49490049, 0x68680068, | 212 | 0x07070007, 0x55550055, 0xeeee00ee, 0x0a0a000a, 0x49490049, 0x68680068, |
212 | 0x38380038, 0xa4a400a4, 0x28280028, 0x7b7b007b, 0xc9c900c9, 0xc1c100c1, | 213 | 0x38380038, 0xa4a400a4, 0x28280028, 0x7b7b007b, 0xc9c900c9, 0xc1c100c1, |
213 | 0xe3e300e3, 0xf4f400f4, 0xc7c700c7, 0x9e9e009e }, | 214 | 0xe3e300e3, 0xf4f400f4, 0xc7c700c7, 0x9e9e009e }, |
214 | { 0x00e0e0e0, 0x00050505, 0x00585858, 0x00d9d9d9, 0x00676767, 0x004e4e4e, | 215 | { 0x00e0e0e0, 0x00050505, 0x00585858, 0x00d9d9d9, 0x00676767, 0x004e4e4e, |
215 | 0x00818181, 0x00cbcbcb, 0x00c9c9c9, 0x000b0b0b, 0x00aeaeae, 0x006a6a6a, | 216 | 0x00818181, 0x00cbcbcb, 0x00c9c9c9, 0x000b0b0b, 0x00aeaeae, 0x006a6a6a, |
216 | 0x00d5d5d5, 0x00181818, 0x005d5d5d, 0x00828282, 0x00464646, 0x00dfdfdf, | 217 | 0x00d5d5d5, 0x00181818, 0x005d5d5d, 0x00828282, 0x00464646, 0x00dfdfdf, |
217 | 0x00d6d6d6, 0x00272727, 0x008a8a8a, 0x00323232, 0x004b4b4b, 0x00424242, | 218 | 0x00d6d6d6, 0x00272727, 0x008a8a8a, 0x00323232, 0x004b4b4b, 0x00424242, |
218 | 0x00dbdbdb, 0x001c1c1c, 0x009e9e9e, 0x009c9c9c, 0x003a3a3a, 0x00cacaca, | 219 | 0x00dbdbdb, 0x001c1c1c, 0x009e9e9e, 0x009c9c9c, 0x003a3a3a, 0x00cacaca, |
219 | 0x00252525, 0x007b7b7b, 0x000d0d0d, 0x00717171, 0x005f5f5f, 0x001f1f1f, | 220 | 0x00252525, 0x007b7b7b, 0x000d0d0d, 0x00717171, 0x005f5f5f, 0x001f1f1f, |
220 | 0x00f8f8f8, 0x00d7d7d7, 0x003e3e3e, 0x009d9d9d, 0x007c7c7c, 0x00606060, | 221 | 0x00f8f8f8, 0x00d7d7d7, 0x003e3e3e, 0x009d9d9d, 0x007c7c7c, 0x00606060, |
221 | 0x00b9b9b9, 0x00bebebe, 0x00bcbcbc, 0x008b8b8b, 0x00161616, 0x00343434, | 222 | 0x00b9b9b9, 0x00bebebe, 0x00bcbcbc, 0x008b8b8b, 0x00161616, 0x00343434, |
222 | 0x004d4d4d, 0x00c3c3c3, 0x00727272, 0x00959595, 0x00ababab, 0x008e8e8e, | 223 | 0x004d4d4d, 0x00c3c3c3, 0x00727272, 0x00959595, 0x00ababab, 0x008e8e8e, |
223 | 0x00bababa, 0x007a7a7a, 0x00b3b3b3, 0x00020202, 0x00b4b4b4, 0x00adadad, | 224 | 0x00bababa, 0x007a7a7a, 0x00b3b3b3, 0x00020202, 0x00b4b4b4, 0x00adadad, |
224 | 0x00a2a2a2, 0x00acacac, 0x00d8d8d8, 0x009a9a9a, 0x00171717, 0x001a1a1a, | 225 | 0x00a2a2a2, 0x00acacac, 0x00d8d8d8, 0x009a9a9a, 0x00171717, 0x001a1a1a, |
225 | 0x00353535, 0x00cccccc, 0x00f7f7f7, 0x00999999, 0x00616161, 0x005a5a5a, | 226 | 0x00353535, 0x00cccccc, 0x00f7f7f7, 0x00999999, 0x00616161, 0x005a5a5a, |
226 | 0x00e8e8e8, 0x00242424, 0x00565656, 0x00404040, 0x00e1e1e1, 0x00636363, | 227 | 0x00e8e8e8, 0x00242424, 0x00565656, 0x00404040, 0x00e1e1e1, 0x00636363, |
227 | 0x00090909, 0x00333333, 0x00bfbfbf, 0x00989898, 0x00979797, 0x00858585, | 228 | 0x00090909, 0x00333333, 0x00bfbfbf, 0x00989898, 0x00979797, 0x00858585, |
228 | 0x00686868, 0x00fcfcfc, 0x00ececec, 0x000a0a0a, 0x00dadada, 0x006f6f6f, | 229 | 0x00686868, 0x00fcfcfc, 0x00ececec, 0x000a0a0a, 0x00dadada, 0x006f6f6f, |
229 | 0x00535353, 0x00626262, 0x00a3a3a3, 0x002e2e2e, 0x00080808, 0x00afafaf, | 230 | 0x00535353, 0x00626262, 0x00a3a3a3, 0x002e2e2e, 0x00080808, 0x00afafaf, |
230 | 0x00282828, 0x00b0b0b0, 0x00747474, 0x00c2c2c2, 0x00bdbdbd, 0x00363636, | 231 | 0x00282828, 0x00b0b0b0, 0x00747474, 0x00c2c2c2, 0x00bdbdbd, 0x00363636, |
231 | 0x00222222, 0x00383838, 0x00646464, 0x001e1e1e, 0x00393939, 0x002c2c2c, | 232 | 0x00222222, 0x00383838, 0x00646464, 0x001e1e1e, 0x00393939, 0x002c2c2c, |
232 | 0x00a6a6a6, 0x00303030, 0x00e5e5e5, 0x00444444, 0x00fdfdfd, 0x00888888, | 233 | 0x00a6a6a6, 0x00303030, 0x00e5e5e5, 0x00444444, 0x00fdfdfd, 0x00888888, |
233 | 0x009f9f9f, 0x00656565, 0x00878787, 0x006b6b6b, 0x00f4f4f4, 0x00232323, | 234 | 0x009f9f9f, 0x00656565, 0x00878787, 0x006b6b6b, 0x00f4f4f4, 0x00232323, |
234 | 0x00484848, 0x00101010, 0x00d1d1d1, 0x00515151, 0x00c0c0c0, 0x00f9f9f9, | 235 | 0x00484848, 0x00101010, 0x00d1d1d1, 0x00515151, 0x00c0c0c0, 0x00f9f9f9, |
235 | 0x00d2d2d2, 0x00a0a0a0, 0x00555555, 0x00a1a1a1, 0x00414141, 0x00fafafa, | 236 | 0x00d2d2d2, 0x00a0a0a0, 0x00555555, 0x00a1a1a1, 0x00414141, 0x00fafafa, |
236 | 0x00434343, 0x00131313, 0x00c4c4c4, 0x002f2f2f, 0x00a8a8a8, 0x00b6b6b6, | 237 | 0x00434343, 0x00131313, 0x00c4c4c4, 0x002f2f2f, 0x00a8a8a8, 0x00b6b6b6, |
237 | 0x003c3c3c, 0x002b2b2b, 0x00c1c1c1, 0x00ffffff, 0x00c8c8c8, 0x00a5a5a5, | 238 | 0x003c3c3c, 0x002b2b2b, 0x00c1c1c1, 0x00ffffff, 0x00c8c8c8, 0x00a5a5a5, |
238 | 0x00202020, 0x00898989, 0x00000000, 0x00909090, 0x00474747, 0x00efefef, | 239 | 0x00202020, 0x00898989, 0x00000000, 0x00909090, 0x00474747, 0x00efefef, |
239 | 0x00eaeaea, 0x00b7b7b7, 0x00151515, 0x00060606, 0x00cdcdcd, 0x00b5b5b5, | 240 | 0x00eaeaea, 0x00b7b7b7, 0x00151515, 0x00060606, 0x00cdcdcd, 0x00b5b5b5, |
240 | 0x00121212, 0x007e7e7e, 0x00bbbbbb, 0x00292929, 0x000f0f0f, 0x00b8b8b8, | 241 | 0x00121212, 0x007e7e7e, 0x00bbbbbb, 0x00292929, 0x000f0f0f, 0x00b8b8b8, |
241 | 0x00070707, 0x00040404, 0x009b9b9b, 0x00949494, 0x00212121, 0x00666666, | 242 | 0x00070707, 0x00040404, 0x009b9b9b, 0x00949494, 0x00212121, 0x00666666, |
242 | 0x00e6e6e6, 0x00cecece, 0x00ededed, 0x00e7e7e7, 0x003b3b3b, 0x00fefefe, | 243 | 0x00e6e6e6, 0x00cecece, 0x00ededed, 0x00e7e7e7, 0x003b3b3b, 0x00fefefe, |
243 | 0x007f7f7f, 0x00c5c5c5, 0x00a4a4a4, 0x00373737, 0x00b1b1b1, 0x004c4c4c, | 244 | 0x007f7f7f, 0x00c5c5c5, 0x00a4a4a4, 0x00373737, 0x00b1b1b1, 0x004c4c4c, |
244 | 0x00919191, 0x006e6e6e, 0x008d8d8d, 0x00767676, 0x00030303, 0x002d2d2d, | 245 | 0x00919191, 0x006e6e6e, 0x008d8d8d, 0x00767676, 0x00030303, 0x002d2d2d, |
245 | 0x00dedede, 0x00969696, 0x00262626, 0x007d7d7d, 0x00c6c6c6, 0x005c5c5c, | 246 | 0x00dedede, 0x00969696, 0x00262626, 0x007d7d7d, 0x00c6c6c6, 0x005c5c5c, |
246 | 0x00d3d3d3, 0x00f2f2f2, 0x004f4f4f, 0x00191919, 0x003f3f3f, 0x00dcdcdc, | 247 | 0x00d3d3d3, 0x00f2f2f2, 0x004f4f4f, 0x00191919, 0x003f3f3f, 0x00dcdcdc, |
247 | 0x00797979, 0x001d1d1d, 0x00525252, 0x00ebebeb, 0x00f3f3f3, 0x006d6d6d, | 248 | 0x00797979, 0x001d1d1d, 0x00525252, 0x00ebebeb, 0x00f3f3f3, 0x006d6d6d, |
248 | 0x005e5e5e, 0x00fbfbfb, 0x00696969, 0x00b2b2b2, 0x00f0f0f0, 0x00313131, | 249 | 0x005e5e5e, 0x00fbfbfb, 0x00696969, 0x00b2b2b2, 0x00f0f0f0, 0x00313131, |
249 | 0x000c0c0c, 0x00d4d4d4, 0x00cfcfcf, 0x008c8c8c, 0x00e2e2e2, 0x00757575, | 250 | 0x000c0c0c, 0x00d4d4d4, 0x00cfcfcf, 0x008c8c8c, 0x00e2e2e2, 0x00757575, |
250 | 0x00a9a9a9, 0x004a4a4a, 0x00575757, 0x00848484, 0x00111111, 0x00454545, | 251 | 0x00a9a9a9, 0x004a4a4a, 0x00575757, 0x00848484, 0x00111111, 0x00454545, |
251 | 0x001b1b1b, 0x00f5f5f5, 0x00e4e4e4, 0x000e0e0e, 0x00737373, 0x00aaaaaa, | 252 | 0x001b1b1b, 0x00f5f5f5, 0x00e4e4e4, 0x000e0e0e, 0x00737373, 0x00aaaaaa, |
252 | 0x00f1f1f1, 0x00dddddd, 0x00595959, 0x00141414, 0x006c6c6c, 0x00929292, | 253 | 0x00f1f1f1, 0x00dddddd, 0x00595959, 0x00141414, 0x006c6c6c, 0x00929292, |
253 | 0x00545454, 0x00d0d0d0, 0x00787878, 0x00707070, 0x00e3e3e3, 0x00494949, | 254 | 0x00545454, 0x00d0d0d0, 0x00787878, 0x00707070, 0x00e3e3e3, 0x00494949, |
254 | 0x00808080, 0x00505050, 0x00a7a7a7, 0x00f6f6f6, 0x00777777, 0x00939393, | 255 | 0x00808080, 0x00505050, 0x00a7a7a7, 0x00f6f6f6, 0x00777777, 0x00939393, |
255 | 0x00868686, 0x00838383, 0x002a2a2a, 0x00c7c7c7, 0x005b5b5b, 0x00e9e9e9, | 256 | 0x00868686, 0x00838383, 0x002a2a2a, 0x00c7c7c7, 0x005b5b5b, 0x00e9e9e9, |
256 | 0x00eeeeee, 0x008f8f8f, 0x00010101, 0x003d3d3d }, | 257 | 0x00eeeeee, 0x008f8f8f, 0x00010101, 0x003d3d3d }, |
257 | { 0x38003838, 0x41004141, 0x16001616, 0x76007676, 0xd900d9d9, 0x93009393, | 258 | { 0x38003838, 0x41004141, 0x16001616, 0x76007676, 0xd900d9d9, 0x93009393, |
258 | 0x60006060, 0xf200f2f2, 0x72007272, 0xc200c2c2, 0xab00abab, 0x9a009a9a, | 259 | 0x60006060, 0xf200f2f2, 0x72007272, 0xc200c2c2, 0xab00abab, 0x9a009a9a, |
259 | 0x75007575, 0x06000606, 0x57005757, 0xa000a0a0, 0x91009191, 0xf700f7f7, | 260 | 0x75007575, 0x06000606, 0x57005757, 0xa000a0a0, 0x91009191, 0xf700f7f7, |
260 | 0xb500b5b5, 0xc900c9c9, 0xa200a2a2, 0x8c008c8c, 0xd200d2d2, 0x90009090, | 261 | 0xb500b5b5, 0xc900c9c9, 0xa200a2a2, 0x8c008c8c, 0xd200d2d2, 0x90009090, |
261 | 0xf600f6f6, 0x07000707, 0xa700a7a7, 0x27002727, 0x8e008e8e, 0xb200b2b2, | 262 | 0xf600f6f6, 0x07000707, 0xa700a7a7, 0x27002727, 0x8e008e8e, 0xb200b2b2, |
262 | 0x49004949, 0xde00dede, 0x43004343, 0x5c005c5c, 0xd700d7d7, 0xc700c7c7, | 263 | 0x49004949, 0xde00dede, 0x43004343, 0x5c005c5c, 0xd700d7d7, 0xc700c7c7, |
263 | 0x3e003e3e, 0xf500f5f5, 0x8f008f8f, 0x67006767, 0x1f001f1f, 0x18001818, | 264 | 0x3e003e3e, 0xf500f5f5, 0x8f008f8f, 0x67006767, 0x1f001f1f, 0x18001818, |
264 | 0x6e006e6e, 0xaf00afaf, 0x2f002f2f, 0xe200e2e2, 0x85008585, 0x0d000d0d, | 265 | 0x6e006e6e, 0xaf00afaf, 0x2f002f2f, 0xe200e2e2, 0x85008585, 0x0d000d0d, |
265 | 0x53005353, 0xf000f0f0, 0x9c009c9c, 0x65006565, 0xea00eaea, 0xa300a3a3, | 266 | 0x53005353, 0xf000f0f0, 0x9c009c9c, 0x65006565, 0xea00eaea, 0xa300a3a3, |
266 | 0xae00aeae, 0x9e009e9e, 0xec00ecec, 0x80008080, 0x2d002d2d, 0x6b006b6b, | 267 | 0xae00aeae, 0x9e009e9e, 0xec00ecec, 0x80008080, 0x2d002d2d, 0x6b006b6b, |
267 | 0xa800a8a8, 0x2b002b2b, 0x36003636, 0xa600a6a6, 0xc500c5c5, 0x86008686, | 268 | 0xa800a8a8, 0x2b002b2b, 0x36003636, 0xa600a6a6, 0xc500c5c5, 0x86008686, |
268 | 0x4d004d4d, 0x33003333, 0xfd00fdfd, 0x66006666, 0x58005858, 0x96009696, | 269 | 0x4d004d4d, 0x33003333, 0xfd00fdfd, 0x66006666, 0x58005858, 0x96009696, |
269 | 0x3a003a3a, 0x09000909, 0x95009595, 0x10001010, 0x78007878, 0xd800d8d8, | 270 | 0x3a003a3a, 0x09000909, 0x95009595, 0x10001010, 0x78007878, 0xd800d8d8, |
270 | 0x42004242, 0xcc00cccc, 0xef00efef, 0x26002626, 0xe500e5e5, 0x61006161, | 271 | 0x42004242, 0xcc00cccc, 0xef00efef, 0x26002626, 0xe500e5e5, 0x61006161, |
271 | 0x1a001a1a, 0x3f003f3f, 0x3b003b3b, 0x82008282, 0xb600b6b6, 0xdb00dbdb, | 272 | 0x1a001a1a, 0x3f003f3f, 0x3b003b3b, 0x82008282, 0xb600b6b6, 0xdb00dbdb, |
272 | 0xd400d4d4, 0x98009898, 0xe800e8e8, 0x8b008b8b, 0x02000202, 0xeb00ebeb, | 273 | 0xd400d4d4, 0x98009898, 0xe800e8e8, 0x8b008b8b, 0x02000202, 0xeb00ebeb, |
273 | 0x0a000a0a, 0x2c002c2c, 0x1d001d1d, 0xb000b0b0, 0x6f006f6f, 0x8d008d8d, | 274 | 0x0a000a0a, 0x2c002c2c, 0x1d001d1d, 0xb000b0b0, 0x6f006f6f, 0x8d008d8d, |
274 | 0x88008888, 0x0e000e0e, 0x19001919, 0x87008787, 0x4e004e4e, 0x0b000b0b, | 275 | 0x88008888, 0x0e000e0e, 0x19001919, 0x87008787, 0x4e004e4e, 0x0b000b0b, |
275 | 0xa900a9a9, 0x0c000c0c, 0x79007979, 0x11001111, 0x7f007f7f, 0x22002222, | 276 | 0xa900a9a9, 0x0c000c0c, 0x79007979, 0x11001111, 0x7f007f7f, 0x22002222, |
276 | 0xe700e7e7, 0x59005959, 0xe100e1e1, 0xda00dada, 0x3d003d3d, 0xc800c8c8, | 277 | 0xe700e7e7, 0x59005959, 0xe100e1e1, 0xda00dada, 0x3d003d3d, 0xc800c8c8, |
277 | 0x12001212, 0x04000404, 0x74007474, 0x54005454, 0x30003030, 0x7e007e7e, | 278 | 0x12001212, 0x04000404, 0x74007474, 0x54005454, 0x30003030, 0x7e007e7e, |
278 | 0xb400b4b4, 0x28002828, 0x55005555, 0x68006868, 0x50005050, 0xbe00bebe, | 279 | 0xb400b4b4, 0x28002828, 0x55005555, 0x68006868, 0x50005050, 0xbe00bebe, |
279 | 0xd000d0d0, 0xc400c4c4, 0x31003131, 0xcb00cbcb, 0x2a002a2a, 0xad00adad, | 280 | 0xd000d0d0, 0xc400c4c4, 0x31003131, 0xcb00cbcb, 0x2a002a2a, 0xad00adad, |
280 | 0x0f000f0f, 0xca00caca, 0x70007070, 0xff00ffff, 0x32003232, 0x69006969, | 281 | 0x0f000f0f, 0xca00caca, 0x70007070, 0xff00ffff, 0x32003232, 0x69006969, |
281 | 0x08000808, 0x62006262, 0x00000000, 0x24002424, 0xd100d1d1, 0xfb00fbfb, | 282 | 0x08000808, 0x62006262, 0x00000000, 0x24002424, 0xd100d1d1, 0xfb00fbfb, |
282 | 0xba00baba, 0xed00eded, 0x45004545, 0x81008181, 0x73007373, 0x6d006d6d, | 283 | 0xba00baba, 0xed00eded, 0x45004545, 0x81008181, 0x73007373, 0x6d006d6d, |
283 | 0x84008484, 0x9f009f9f, 0xee00eeee, 0x4a004a4a, 0xc300c3c3, 0x2e002e2e, | 284 | 0x84008484, 0x9f009f9f, 0xee00eeee, 0x4a004a4a, 0xc300c3c3, 0x2e002e2e, |
284 | 0xc100c1c1, 0x01000101, 0xe600e6e6, 0x25002525, 0x48004848, 0x99009999, | 285 | 0xc100c1c1, 0x01000101, 0xe600e6e6, 0x25002525, 0x48004848, 0x99009999, |
285 | 0xb900b9b9, 0xb300b3b3, 0x7b007b7b, 0xf900f9f9, 0xce00cece, 0xbf00bfbf, | 286 | 0xb900b9b9, 0xb300b3b3, 0x7b007b7b, 0xf900f9f9, 0xce00cece, 0xbf00bfbf, |
286 | 0xdf00dfdf, 0x71007171, 0x29002929, 0xcd00cdcd, 0x6c006c6c, 0x13001313, | 287 | 0xdf00dfdf, 0x71007171, 0x29002929, 0xcd00cdcd, 0x6c006c6c, 0x13001313, |
287 | 0x64006464, 0x9b009b9b, 0x63006363, 0x9d009d9d, 0xc000c0c0, 0x4b004b4b, | 288 | 0x64006464, 0x9b009b9b, 0x63006363, 0x9d009d9d, 0xc000c0c0, 0x4b004b4b, |
288 | 0xb700b7b7, 0xa500a5a5, 0x89008989, 0x5f005f5f, 0xb100b1b1, 0x17001717, | 289 | 0xb700b7b7, 0xa500a5a5, 0x89008989, 0x5f005f5f, 0xb100b1b1, 0x17001717, |
289 | 0xf400f4f4, 0xbc00bcbc, 0xd300d3d3, 0x46004646, 0xcf00cfcf, 0x37003737, | 290 | 0xf400f4f4, 0xbc00bcbc, 0xd300d3d3, 0x46004646, 0xcf00cfcf, 0x37003737, |
290 | 0x5e005e5e, 0x47004747, 0x94009494, 0xfa00fafa, 0xfc00fcfc, 0x5b005b5b, | 291 | 0x5e005e5e, 0x47004747, 0x94009494, 0xfa00fafa, 0xfc00fcfc, 0x5b005b5b, |
291 | 0x97009797, 0xfe00fefe, 0x5a005a5a, 0xac00acac, 0x3c003c3c, 0x4c004c4c, | 292 | 0x97009797, 0xfe00fefe, 0x5a005a5a, 0xac00acac, 0x3c003c3c, 0x4c004c4c, |
292 | 0x03000303, 0x35003535, 0xf300f3f3, 0x23002323, 0xb800b8b8, 0x5d005d5d, | 293 | 0x03000303, 0x35003535, 0xf300f3f3, 0x23002323, 0xb800b8b8, 0x5d005d5d, |
293 | 0x6a006a6a, 0x92009292, 0xd500d5d5, 0x21002121, 0x44004444, 0x51005151, | 294 | 0x6a006a6a, 0x92009292, 0xd500d5d5, 0x21002121, 0x44004444, 0x51005151, |
294 | 0xc600c6c6, 0x7d007d7d, 0x39003939, 0x83008383, 0xdc00dcdc, 0xaa00aaaa, | 295 | 0xc600c6c6, 0x7d007d7d, 0x39003939, 0x83008383, 0xdc00dcdc, 0xaa00aaaa, |
295 | 0x7c007c7c, 0x77007777, 0x56005656, 0x05000505, 0x1b001b1b, 0xa400a4a4, | 296 | 0x7c007c7c, 0x77007777, 0x56005656, 0x05000505, 0x1b001b1b, 0xa400a4a4, |
296 | 0x15001515, 0x34003434, 0x1e001e1e, 0x1c001c1c, 0xf800f8f8, 0x52005252, | 297 | 0x15001515, 0x34003434, 0x1e001e1e, 0x1c001c1c, 0xf800f8f8, 0x52005252, |
297 | 0x20002020, 0x14001414, 0xe900e9e9, 0xbd00bdbd, 0xdd00dddd, 0xe400e4e4, | 298 | 0x20002020, 0x14001414, 0xe900e9e9, 0xbd00bdbd, 0xdd00dddd, 0xe400e4e4, |
298 | 0xa100a1a1, 0xe000e0e0, 0x8a008a8a, 0xf100f1f1, 0xd600d6d6, 0x7a007a7a, | 299 | 0xa100a1a1, 0xe000e0e0, 0x8a008a8a, 0xf100f1f1, 0xd600d6d6, 0x7a007a7a, |
299 | 0xbb00bbbb, 0xe300e3e3, 0x40004040, 0x4f004f4f } | 300 | 0xbb00bbbb, 0xe300e3e3, 0x40004040, 0x4f004f4f } |
300 | }; | 301 | }; |
301 | 302 | ||
@@ -310,156 +311,151 @@ static const u32 SIGMA[] = { | |||
310 | * This version does not attempt to minimize amount of temporary | 311 | * This version does not attempt to minimize amount of temporary |
311 | * variables, but instead explicitly exposes algorithm's parallelism. | 312 | * variables, but instead explicitly exposes algorithm's parallelism. |
312 | * It is therefore most appropriate for platforms with not less than | 313 | * It is therefore most appropriate for platforms with not less than |
313 | * ~16 registers. For platforms with less registers [well, x86 to be | 314 | * ~16 registers. For platforms with fewer registers [well, x86 to be |
314 | * specific] assembler version should be/is provided anyway... | 315 | * specific] assembler version should be/is provided anyway... |
315 | */ | 316 | */ |
316 | #define Camellia_Feistel(_s0,_s1,_s2,_s3,_key) do {\ | 317 | #define Camellia_Feistel(_s0,_s1,_s2,_s3,_key) \ |
317 | u32 _t0,_t1,_t2,_t3;\ | 318 | do { \ |
318 | \ | 319 | u32 _t0, _t1, _t2, _t3; \ |
319 | _t0 = _s0 ^ (_key)[0];\ | 320 | _t0 = _s0 ^ (_key)[0]; \ |
320 | _t3 = SBOX4_4404[_t0&0xff];\ | 321 | _t3 = SBOX4_4404[_t0 & 0xff]; \ |
321 | _t1 = _s1 ^ (_key)[1];\ | 322 | _t1 = _s1 ^ (_key)[1]; \ |
322 | _t3 ^= SBOX3_3033[(_t0 >> 8)&0xff];\ | 323 | _t3 ^= SBOX3_3033[(_t0 >> 8) & 0xff]; \ |
323 | _t2 = SBOX1_1110[_t1&0xff];\ | 324 | _t2 = SBOX1_1110[_t1 & 0xff]; \ |
324 | _t3 ^= SBOX2_0222[(_t0 >> 16)&0xff];\ | 325 | _t3 ^= SBOX2_0222[(_t0 >> 16) & 0xff]; \ |
325 | _t2 ^= SBOX4_4404[(_t1 >> 8)&0xff];\ | 326 | _t2 ^= SBOX4_4404[(_t1 >> 8) & 0xff]; \ |
326 | _t3 ^= SBOX1_1110[(_t0 >> 24)];\ | 327 | _t3 ^= SBOX1_1110[(_t0 >> 24)]; \ |
327 | _t2 ^= _t3;\ | 328 | _t2 ^= _t3; \ |
328 | _t3 = RightRotate(_t3,8);\ | 329 | _t3 = RightRotate(_t3, 8); \ |
329 | _t2 ^= SBOX3_3033[(_t1 >> 16)&0xff];\ | 330 | _t2 ^= SBOX3_3033[(_t1 >> 16) & 0xff]; \ |
330 | _s3 ^= _t3;\ | 331 | _s3 ^= _t3; \ |
331 | _t2 ^= SBOX2_0222[(_t1 >> 24)];\ | 332 | _t2 ^= SBOX2_0222[(_t1 >> 24)]; \ |
332 | _s2 ^= _t2; \ | 333 | _s2 ^= _t2; \ |
333 | _s3 ^= _t2;\ | 334 | _s3 ^= _t2; \ |
334 | } while(0) | 335 | } while(0) |
335 | 336 | ||
336 | /* | 337 | /* |
337 | * Note that n has to be less than 32. Rotations for larger amount | 338 | * Note that n has to be less than 32. Rotations for larger amount |
338 | * of bits are achieved by "rotating" order of s-elements and | 339 | * of bits are achieved by "rotating" order of s-elements and |
339 | * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32). | 340 | * adjusting n accordingly, e.g. RotLeft128(s1, s2, s3, s0, n - 32). |
340 | */ | 341 | */ |
341 | #define RotLeft128(_s0,_s1,_s2,_s3,_n) do {\ | 342 | #define RotLeft128(_s0, _s1, _s2, _s3, _n) \ |
342 | u32 _t0=_s0>>(32-_n);\ | 343 | do { \ |
343 | _s0 = (_s0<<_n) | (_s1>>(32-_n));\ | 344 | u32 _t0 = _s0 >> (32 - _n); \ |
344 | _s1 = (_s1<<_n) | (_s2>>(32-_n));\ | 345 | _s0 = (_s0 << _n) | (_s1 >> (32 - _n)); \ |
345 | _s2 = (_s2<<_n) | (_s3>>(32-_n));\ | 346 | _s1 = (_s1 << _n) | (_s2 >> (32 - _n)); \ |
346 | _s3 = (_s3<<_n) | _t0;\ | 347 | _s2 = (_s2 << _n) | (_s3 >> (32 - _n)); \ |
348 | _s3 = (_s3 << _n) | _t0; \ | ||
347 | } while (0) | 349 | } while (0) |
348 | 350 | ||
349 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) | 351 | int |
350 | { | 352 | Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) |
351 | u32 s0,s1,s2,s3; | 353 | { |
354 | u32 s0, s1, s2, s3; | ||
352 | 355 | ||
353 | k[0] = s0 = GETU32(rawKey); | 356 | k[0] = s0 = GETU32(rawKey); |
354 | k[1] = s1 = GETU32(rawKey+4); | 357 | k[1] = s1 = GETU32(rawKey + 4); |
355 | k[2] = s2 = GETU32(rawKey+8); | 358 | k[2] = s2 = GETU32(rawKey + 8); |
356 | k[3] = s3 = GETU32(rawKey+12); | 359 | k[3] = s3 = GETU32(rawKey + 12); |
357 | 360 | ||
358 | if (keyBitLength != 128) | 361 | if (keyBitLength != 128) { |
359 | { | 362 | k[8] = s0 = GETU32(rawKey + 16); |
360 | k[8] = s0 = GETU32(rawKey+16); | 363 | k[9] = s1 = GETU32(rawKey + 20); |
361 | k[9] = s1 = GETU32(rawKey+20); | 364 | if (keyBitLength == 192) { |
362 | if (keyBitLength == 192) | ||
363 | { | ||
364 | k[10] = s2 = ~s0; | 365 | k[10] = s2 = ~s0; |
365 | k[11] = s3 = ~s1; | 366 | k[11] = s3 = ~s1; |
366 | } | 367 | } else { |
367 | else | 368 | k[10] = s2 = GETU32(rawKey + 24); |
368 | { | 369 | k[11] = s3 = GETU32(rawKey + 28); |
369 | k[10] = s2 = GETU32(rawKey+24); | ||
370 | k[11] = s3 = GETU32(rawKey+28); | ||
371 | } | ||
372 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | ||
373 | } | 370 | } |
371 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | ||
372 | } | ||
374 | 373 | ||
375 | /* Use the Feistel routine to scramble the key material */ | 374 | /* Use the Feistel routine to scramble the key material */ |
376 | Camellia_Feistel(s0,s1,s2,s3,SIGMA+0); | 375 | Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); |
377 | Camellia_Feistel(s2,s3,s0,s1,SIGMA+2); | 376 | Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); |
378 | 377 | ||
379 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; | 378 | s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; |
380 | Camellia_Feistel(s0,s1,s2,s3,SIGMA+4); | 379 | Camellia_Feistel(s0, s1, s2, s3, SIGMA + 4); |
381 | Camellia_Feistel(s2,s3,s0,s1,SIGMA+6); | 380 | Camellia_Feistel(s2, s3, s0, s1, SIGMA + 6); |
382 | 381 | ||
383 | /* Fill the keyTable. Requires many block rotations. */ | 382 | /* Fill the keyTable. Requires many block rotations. */ |
384 | if (keyBitLength == 128) | 383 | if (keyBitLength == 128) { |
385 | { | ||
386 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; | 384 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; |
387 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 15 */ | 385 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */ |
388 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 386 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
389 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 30 */ | 387 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 30 */ |
390 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; | 388 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; |
391 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 45 */ | 389 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 45 */ |
392 | k[24] = s0, k[25] = s1; | 390 | k[24] = s0, k[25] = s1; |
393 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 60 */ | 391 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 60 */ |
394 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; | 392 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; |
395 | RotLeft128(s1,s2,s3,s0,2); /* KA <<< 94 */ | 393 | RotLeft128(s1, s2, s3, s0, 2); /* KA <<< 94 */ |
396 | k[40] = s1, k[41] = s2, k[42] = s3, k[43] = s0; | 394 | k[40] = s1, k[41] = s2, k[42] = s3, k[43] = s0; |
397 | RotLeft128(s1,s2,s3,s0,17); /* KA <<<111 */ | 395 | RotLeft128(s1, s2, s3, s0, 17); /* KA <<<111 */ |
398 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; | 396 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; |
399 | 397 | ||
400 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; | 398 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; |
401 | RotLeft128(s0,s1,s2,s3,15); /* KL <<< 15 */ | 399 | RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 15 */ |
402 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; | 400 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; |
403 | RotLeft128(s0,s1,s2,s3,30); /* KL <<< 45 */ | 401 | RotLeft128(s0, s1, s2, s3, 30); /* KL <<< 45 */ |
404 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; | 402 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; |
405 | RotLeft128(s0,s1,s2,s3,15); /* KL <<< 60 */ | 403 | RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 60 */ |
406 | k[26] = s2, k[27] = s3; | 404 | k[26] = s2, k[27] = s3; |
407 | RotLeft128(s0,s1,s2,s3,17); /* KL <<< 77 */ | 405 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 77 */ |
408 | k[32] = s0, k[33] = s1, k[34] = s2, k[35] = s3; | 406 | k[32] = s0, k[33] = s1, k[34] = s2, k[35] = s3; |
409 | RotLeft128(s0,s1,s2,s3,17); /* KL <<< 94 */ | 407 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 94 */ |
410 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; | 408 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; |
411 | RotLeft128(s0,s1,s2,s3,17); /* KL <<<111 */ | 409 | RotLeft128(s0, s1, s2, s3, 17); /* KL <<<111 */ |
412 | k[44] = s0, k[45] = s1, k[46] = s2, k[47] = s3; | 410 | k[44] = s0, k[45] = s1, k[46] = s2, k[47] = s3; |
413 | 411 | ||
414 | return 3; /* grand rounds */ | 412 | return 3; /* grand rounds */ |
415 | } | 413 | } else { |
416 | else | ||
417 | { | ||
418 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 414 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
419 | s0 ^= k[8], s1 ^= k[9], s2 ^=k[10], s3 ^=k[11]; | 415 | s0 ^= k[8], s1 ^= k[9], s2 ^=k[10], s3 ^=k[11]; |
420 | Camellia_Feistel(s0,s1,s2,s3,(SIGMA+8)); | 416 | Camellia_Feistel(s0, s1, s2, s3, (SIGMA + 8)); |
421 | Camellia_Feistel(s2,s3,s0,s1,(SIGMA+10)); | 417 | Camellia_Feistel(s2, s3, s0, s1, (SIGMA + 10)); |
422 | 418 | ||
423 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; | 419 | k[ 4] = s0, k[ 5] = s1, k[ 6] = s2, k[ 7] = s3; |
424 | RotLeft128(s0,s1,s2,s3,30); /* KB <<< 30 */ | 420 | RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 30 */ |
425 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; | 421 | k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3; |
426 | RotLeft128(s0,s1,s2,s3,30); /* KB <<< 60 */ | 422 | RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 60 */ |
427 | k[40] = s0, k[41] = s1, k[42] = s2, k[43] = s3; | 423 | k[40] = s0, k[41] = s1, k[42] = s2, k[43] = s3; |
428 | RotLeft128(s1,s2,s3,s0,19); /* KB <<<111 */ | 424 | RotLeft128(s1, s2, s3, s0, 19); /* KB <<<111 */ |
429 | k[64] = s1, k[65] = s2, k[66] = s3, k[67] = s0; | 425 | k[64] = s1, k[65] = s2, k[66] = s3, k[67] = s0; |
430 | 426 | ||
431 | s0 = k[ 8], s1 = k[ 9], s2 = k[10], s3 = k[11]; | 427 | s0 = k[ 8], s1 = k[ 9], s2 = k[10], s3 = k[11]; |
432 | RotLeft128(s0,s1,s2,s3,15); /* KR <<< 15 */ | 428 | RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 15 */ |
433 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; | 429 | k[ 8] = s0, k[ 9] = s1, k[10] = s2, k[11] = s3; |
434 | RotLeft128(s0,s1,s2,s3,15); /* KR <<< 30 */ | 430 | RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 30 */ |
435 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; | 431 | k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3; |
436 | RotLeft128(s0,s1,s2,s3,30); /* KR <<< 60 */ | 432 | RotLeft128(s0, s1, s2, s3, 30); /* KR <<< 60 */ |
437 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; | 433 | k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3; |
438 | RotLeft128(s1,s2,s3,s0,2); /* KR <<< 94 */ | 434 | RotLeft128(s1, s2, s3, s0, 2); /* KR <<< 94 */ |
439 | k[52] = s1, k[53] = s2, k[54] = s3, k[55] = s0; | 435 | k[52] = s1, k[53] = s2, k[54] = s3, k[55] = s0; |
440 | 436 | ||
441 | s0 = k[12], s1 = k[13], s2 = k[14], s3 = k[15]; | 437 | s0 = k[12], s1 = k[13], s2 = k[14], s3 = k[15]; |
442 | RotLeft128(s0,s1,s2,s3,15); /* KA <<< 15 */ | 438 | RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */ |
443 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; | 439 | k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3; |
444 | RotLeft128(s0,s1,s2,s3,30); /* KA <<< 45 */ | 440 | RotLeft128(s0, s1, s2, s3, 30); /* KA <<< 45 */ |
445 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; | 441 | k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3; |
446 | /* KA <<< 77 */ | 442 | /* KA <<< 77 */ |
447 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; | 443 | k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0; |
448 | RotLeft128(s1,s2,s3,s0,17); /* KA <<< 94 */ | 444 | RotLeft128(s1, s2, s3, s0, 17); /* KA <<< 94 */ |
449 | k[56] = s1, k[57] = s2, k[58] = s3, k[59] = s0; | 445 | k[56] = s1, k[57] = s2, k[58] = s3, k[59] = s0; |
450 | 446 | ||
451 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; | 447 | s0 = k[ 0], s1 = k[ 1], s2 = k[ 2], s3 = k[ 3]; |
452 | RotLeft128(s1,s2,s3,s0,13); /* KL <<< 45 */ | 448 | RotLeft128(s1, s2, s3, s0, 13); /* KL <<< 45 */ |
453 | k[24] = s1, k[25] = s2, k[26] = s3, k[27] = s0; | 449 | k[24] = s1, k[25] = s2, k[26] = s3, k[27] = s0; |
454 | RotLeft128(s1,s2,s3,s0,15); /* KL <<< 60 */ | 450 | RotLeft128(s1, s2, s3, s0, 15); /* KL <<< 60 */ |
455 | k[32] = s1, k[33] = s2, k[34] = s3, k[35] = s0; | 451 | k[32] = s1, k[33] = s2, k[34] = s3, k[35] = s0; |
456 | RotLeft128(s1,s2,s3,s0,17); /* KL <<< 77 */ | 452 | RotLeft128(s1, s2, s3, s0, 17); /* KL <<< 77 */ |
457 | k[44] = s1, k[45] = s2, k[46] = s3, k[47] = s0; | 453 | k[44] = s1, k[45] = s2, k[46] = s3, k[47] = s0; |
458 | RotLeft128(s2,s3,s0,s1,2); /* KL <<<111 */ | 454 | RotLeft128(s2, s3, s0, s1, 2); /* KL <<<111 */ |
459 | k[60] = s2, k[61] = s3, k[62] = s0, k[63] = s1; | 455 | k[60] = s2, k[61] = s3, k[62] = s0, k[63] = s1; |
460 | 456 | ||
461 | return 4; /* grand rounds */ | 457 | return 4; /* grand rounds */ |
462 | } | 458 | } |
463 | /* | 459 | /* |
464 | * It is possible to perform certain precalculations, which | 460 | * It is possible to perform certain precalculations, which |
465 | * would spare few cycles in block procedure. It's not done, | 461 | * would spare few cycles in block procedure. It's not done, |
@@ -467,33 +463,34 @@ int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) | |||
467 | * setup and block procedures, negatively affecting overall | 463 | * setup and block procedures, negatively affecting overall |
468 | * throughput in applications operating on short messages | 464 | * throughput in applications operating on short messages |
469 | * and volatile keys. | 465 | * and volatile keys. |
470 | */ | 466 | */ |
471 | } | 467 | } |
472 | 468 | ||
473 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | 469 | void |
474 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | 470 | Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], |
475 | { | 471 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) |
476 | u32 s0,s1,s2,s3; | 472 | { |
477 | const u32 *k = keyTable,*kend = keyTable+grandRounds*16; | 473 | u32 s0, s1, s2, s3; |
478 | 474 | const u32 *k = keyTable, *kend = keyTable + grandRounds * 16; | |
479 | s0 = GETU32(plaintext) ^ k[0]; | 475 | |
480 | s1 = GETU32(plaintext+4) ^ k[1]; | 476 | s0 = GETU32(plaintext) ^ k[0]; |
481 | s2 = GETU32(plaintext+8) ^ k[2]; | 477 | s1 = GETU32(plaintext + 4) ^ k[1]; |
482 | s3 = GETU32(plaintext+12) ^ k[3]; | 478 | s2 = GETU32(plaintext + 8) ^ k[2]; |
479 | s3 = GETU32(plaintext + 12) ^ k[3]; | ||
483 | k += 4; | 480 | k += 4; |
484 | 481 | ||
485 | while (1) | 482 | while (1) { |
486 | { | ||
487 | /* Camellia makes 6 Feistel rounds */ | 483 | /* Camellia makes 6 Feistel rounds */ |
488 | Camellia_Feistel(s0,s1,s2,s3,k+0); | 484 | Camellia_Feistel(s0, s1, s2, s3, k + 0); |
489 | Camellia_Feistel(s2,s3,s0,s1,k+2); | 485 | Camellia_Feistel(s2, s3, s0, s1, k + 2); |
490 | Camellia_Feistel(s0,s1,s2,s3,k+4); | 486 | Camellia_Feistel(s0, s1, s2, s3, k + 4); |
491 | Camellia_Feistel(s2,s3,s0,s1,k+6); | 487 | Camellia_Feistel(s2, s3, s0, s1, k + 6); |
492 | Camellia_Feistel(s0,s1,s2,s3,k+8); | 488 | Camellia_Feistel(s0, s1, s2, s3, k + 8); |
493 | Camellia_Feistel(s2,s3,s0,s1,k+10); | 489 | Camellia_Feistel(s2, s3, s0, s1, k + 10); |
494 | k += 12; | 490 | k += 12; |
495 | 491 | ||
496 | if (k == kend) break; | 492 | if (k == kend) |
493 | break; | ||
497 | 494 | ||
498 | /* This is the same function as the diffusion function D | 495 | /* This is the same function as the diffusion function D |
499 | * of the accompanying documentation. See section 3.2 | 496 | * of the accompanying documentation. See section 3.2 |
@@ -503,45 +500,48 @@ void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | |||
503 | s0 ^= s1 | k[1]; | 500 | s0 ^= s1 | k[1]; |
504 | s3 ^= LeftRotate(s2 & k[2], 1); | 501 | s3 ^= LeftRotate(s2 & k[2], 1); |
505 | k += 4; | 502 | k += 4; |
506 | } | ||
507 | |||
508 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; | ||
509 | |||
510 | PUTU32(ciphertext, s2); | ||
511 | PUTU32(ciphertext+4, s3); | ||
512 | PUTU32(ciphertext+8, s0); | ||
513 | PUTU32(ciphertext+12,s1); | ||
514 | } | ||
515 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | ||
516 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | ||
517 | { | ||
518 | Camellia_EncryptBlock_Rounds(keyBitLength==128?3:4, | ||
519 | plaintext,keyTable,ciphertext); | ||
520 | } | 503 | } |
521 | 504 | ||
522 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | 505 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; |
523 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]) | ||
524 | { | ||
525 | u32 s0,s1,s2,s3; | ||
526 | const u32 *k = keyTable+grandRounds*16,*kend = keyTable+4; | ||
527 | 506 | ||
528 | s0 = GETU32(ciphertext) ^ k[0]; | 507 | PUTU32(ciphertext, s2); |
529 | s1 = GETU32(ciphertext+4) ^ k[1]; | 508 | PUTU32(ciphertext + 4, s3); |
530 | s2 = GETU32(ciphertext+8) ^ k[2]; | 509 | PUTU32(ciphertext + 8, s0); |
510 | PUTU32(ciphertext + 12, s1); | ||
511 | } | ||
512 | |||
513 | void | ||
514 | Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | ||
515 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | ||
516 | { | ||
517 | Camellia_EncryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, | ||
518 | plaintext, keyTable, ciphertext); | ||
519 | } | ||
520 | |||
521 | void | ||
522 | Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | ||
523 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]) | ||
524 | { | ||
525 | u32 s0, s1, s2, s3; | ||
526 | const u32 *k = keyTable+grandRounds * 16, *kend = keyTable+4; | ||
527 | |||
528 | s0 = GETU32(ciphertext) ^ k[0]; | ||
529 | s1 = GETU32(ciphertext+4) ^ k[1]; | ||
530 | s2 = GETU32(ciphertext+8) ^ k[2]; | ||
531 | s3 = GETU32(ciphertext+12) ^ k[3]; | 531 | s3 = GETU32(ciphertext+12) ^ k[3]; |
532 | 532 | ||
533 | while (1) | 533 | while (1) { |
534 | { | ||
535 | /* Camellia makes 6 Feistel rounds */ | 534 | /* Camellia makes 6 Feistel rounds */ |
536 | k -= 12; | 535 | k -= 12; |
537 | Camellia_Feistel(s0,s1,s2,s3,k+10); | 536 | Camellia_Feistel(s0, s1, s2, s3, k+10); |
538 | Camellia_Feistel(s2,s3,s0,s1,k+8); | 537 | Camellia_Feistel(s2, s3, s0, s1, k+8); |
539 | Camellia_Feistel(s0,s1,s2,s3,k+6); | 538 | Camellia_Feistel(s0, s1, s2, s3, k+6); |
540 | Camellia_Feistel(s2,s3,s0,s1,k+4); | 539 | Camellia_Feistel(s2, s3, s0, s1, k+4); |
541 | Camellia_Feistel(s0,s1,s2,s3,k+2); | 540 | Camellia_Feistel(s0, s1, s2, s3, k+2); |
542 | Camellia_Feistel(s2,s3,s0,s1,k+0); | 541 | Camellia_Feistel(s2, s3, s0, s1, k+0); |
543 | 542 | ||
544 | if (k == kend) break; | 543 | if (k == kend) |
544 | break; | ||
545 | 545 | ||
546 | /* This is the same function as the diffusion function D | 546 | /* This is the same function as the diffusion function D |
547 | * of the accompanying documentation. See section 3.2 | 547 | * of the accompanying documentation. See section 3.2 |
@@ -551,19 +551,21 @@ void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | |||
551 | s2 ^= s3 | k[1]; | 551 | s2 ^= s3 | k[1]; |
552 | s0 ^= s1 | k[3]; | 552 | s0 ^= s1 | k[3]; |
553 | s3 ^= LeftRotate(s2 & k[0], 1); | 553 | s3 ^= LeftRotate(s2 & k[0], 1); |
554 | } | 554 | } |
555 | 555 | ||
556 | k -= 4; | 556 | k -= 4; |
557 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; | 557 | s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3]; |
558 | 558 | ||
559 | PUTU32(plaintext, s2); | 559 | PUTU32(plaintext, s2); |
560 | PUTU32(plaintext+4, s3); | 560 | PUTU32(plaintext+4, s3); |
561 | PUTU32(plaintext+8, s0); | 561 | PUTU32(plaintext+8, s0); |
562 | PUTU32(plaintext+12,s1); | 562 | PUTU32(plaintext+12, s1); |
563 | } | 563 | } |
564 | void Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[], | 564 | |
565 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) | 565 | void |
566 | { | 566 | Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[], |
567 | Camellia_DecryptBlock_Rounds(keyBitLength==128?3:4, | 567 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]) |
568 | plaintext,keyTable,ciphertext); | 568 | { |
569 | } | 569 | Camellia_DecryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, |
570 | plaintext, keyTable, ciphertext); | ||
571 | } | ||
diff --git a/src/lib/libssl/src/crypto/camellia/camellia.h b/src/lib/libssl/src/crypto/camellia/camellia.h index a294f97571..b9b5f792b1 100644 --- a/src/lib/libssl/src/crypto/camellia/camellia.h +++ b/src/lib/libssl/src/crypto/camellia/camellia.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: camellia.h,v 1.4 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: camellia.h,v 1.5 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -78,14 +78,13 @@ extern "C" { | |||
78 | 78 | ||
79 | typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match with WORD */ | 79 | typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match with WORD */ |
80 | 80 | ||
81 | struct camellia_key_st | 81 | struct camellia_key_st { |
82 | { | 82 | union { |
83 | union { | ||
84 | double d; /* ensures 64-bit align */ | 83 | double d; /* ensures 64-bit align */ |
85 | KEY_TABLE_TYPE rd_key; | 84 | KEY_TABLE_TYPE rd_key; |
86 | } u; | 85 | } u; |
87 | int grand_rounds; | 86 | int grand_rounds; |
88 | }; | 87 | }; |
89 | typedef struct camellia_key_st CAMELLIA_KEY; | 88 | typedef struct camellia_key_st CAMELLIA_KEY; |
90 | 89 | ||
91 | int Camellia_set_key(const unsigned char *userKey, const int bits, | 90 | int Camellia_set_key(const unsigned char *userKey, const int bits, |
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_cbc.c b/src/lib/libssl/src/crypto/camellia/cmll_cbc.c index b21857c572..6567e5deb6 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_cbc.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_cbc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_cbc.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_cbc.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -52,13 +52,14 @@ | |||
52 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
53 | #include <openssl/modes.h> | 53 | #include <openssl/modes.h> |
54 | 54 | ||
55 | void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
56 | size_t len, const CAMELLIA_KEY *key, | 56 | Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, |
57 | unsigned char *ivec, const int enc) | 57 | const CAMELLIA_KEY *key, unsigned char *ivec, const int enc) |
58 | { | 58 | { |
59 | |||
60 | if (enc) | 59 | if (enc) |
61 | CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)Camellia_encrypt); | 60 | CRYPTO_cbc128_encrypt(in, out, len, key, ivec, |
61 | (block128_f)Camellia_encrypt); | ||
62 | else | 62 | else |
63 | CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)Camellia_decrypt); | 63 | CRYPTO_cbc128_decrypt(in, out, len, key, ivec, |
64 | } | 64 | (block128_f)Camellia_decrypt); |
65 | } | ||
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_cfb.c b/src/lib/libssl/src/crypto/camellia/cmll_cfb.c index 17e6cca332..755ab9f8bf 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_cfb.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_cfb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_cfb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_cfb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -109,31 +109,36 @@ | |||
109 | #include <openssl/modes.h> | 109 | #include <openssl/modes.h> |
110 | 110 | ||
111 | 111 | ||
112 | /* The input and output encrypted as though 128bit cfb mode is being | 112 | /* |
113 | * The input and output encrypted as though 128bit cfb mode is being | ||
113 | * used. The extra state information to record how much of the | 114 | * used. The extra state information to record how much of the |
114 | * 128bit block we have used is contained in *num; | 115 | * 128bit block we have used is contained in *num; |
115 | */ | 116 | */ |
116 | 117 | ||
117 | void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, | 118 | void |
118 | size_t length, const CAMELLIA_KEY *key, | 119 | Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, |
119 | unsigned char *ivec, int *num, const int enc) | 120 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, |
120 | { | 121 | const int enc) |
121 | 122 | { | |
122 | CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | 123 | CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc, |
123 | } | 124 | (block128_f)Camellia_encrypt); |
125 | } | ||
124 | 126 | ||
125 | /* N.B. This expects the input to be packed, MS bit first */ | 127 | /* N.B. This expects the input to be packed, MS bit first */ |
126 | void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, | 128 | void |
127 | size_t length, const CAMELLIA_KEY *key, | 129 | Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, |
128 | unsigned char *ivec, int *num, const int enc) | 130 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, |
129 | { | 131 | const int enc) |
130 | CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | 132 | { |
131 | } | 133 | CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc, |
132 | 134 | (block128_f)Camellia_encrypt); | |
133 | void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | 135 | } |
134 | size_t length, const CAMELLIA_KEY *key, | ||
135 | unsigned char *ivec, int *num, const int enc) | ||
136 | { | ||
137 | CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)Camellia_encrypt); | ||
138 | } | ||
139 | 136 | ||
137 | void | ||
138 | Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, | ||
139 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, | ||
140 | const int enc) | ||
141 | { | ||
142 | CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc, | ||
143 | (block128_f)Camellia_encrypt); | ||
144 | } | ||
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_ctr.c b/src/lib/libssl/src/crypto/camellia/cmll_ctr.c index 80fbcaf925..59a351ee1b 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_ctr.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_ctr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ctr.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ctr.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -52,13 +52,12 @@ | |||
52 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
53 | #include <openssl/modes.h> | 53 | #include <openssl/modes.h> |
54 | 54 | ||
55 | void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
56 | size_t length, const CAMELLIA_KEY *key, | 56 | Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, |
57 | unsigned char ivec[CAMELLIA_BLOCK_SIZE], | 57 | size_t length, const CAMELLIA_KEY *key, |
58 | unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], | 58 | unsigned char ivec[CAMELLIA_BLOCK_SIZE], |
59 | unsigned int *num) | 59 | unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num) |
60 | { | 60 | { |
61 | 61 | CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num, | |
62 | CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)Camellia_encrypt); | 62 | (block128_f)Camellia_encrypt); |
63 | } | 63 | } |
64 | |||
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_ecb.c b/src/lib/libssl/src/crypto/camellia/cmll_ecb.c index 3054f277fe..1a65445202 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_ecb.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ecb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ecb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -49,26 +49,15 @@ | |||
49 | * | 49 | * |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #ifndef CAMELLIA_DEBUG | ||
53 | # ifndef NDEBUG | ||
54 | # define NDEBUG | ||
55 | # endif | ||
56 | #endif | ||
57 | #include <assert.h> | ||
58 | |||
59 | #include <openssl/camellia.h> | 52 | #include <openssl/camellia.h> |
60 | #include "cmll_locl.h" | 53 | #include "cmll_locl.h" |
61 | 54 | ||
62 | void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
63 | const CAMELLIA_KEY *key, const int enc) | 56 | Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, |
64 | { | 57 | const CAMELLIA_KEY *key, const int enc) |
65 | 58 | { | |
66 | assert(in && out && key); | ||
67 | assert((CAMELLIA_ENCRYPT == enc)||(CAMELLIA_DECRYPT == enc)); | ||
68 | |||
69 | if (CAMELLIA_ENCRYPT == enc) | 59 | if (CAMELLIA_ENCRYPT == enc) |
70 | Camellia_encrypt(in, out, key); | 60 | Camellia_encrypt(in, out, key); |
71 | else | 61 | else |
72 | Camellia_decrypt(in, out, key); | 62 | Camellia_decrypt(in, out, key); |
73 | } | 63 | } |
74 | |||
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_locl.h b/src/lib/libssl/src/crypto/camellia/cmll_locl.h index 60055b0d18..8a4f540fbc 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_locl.h +++ b/src/lib/libssl/src/crypto/camellia/cmll_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_locl.h,v 1.4 2014/07/12 20:11:45 miod Exp $ */ | 1 | /* $OpenBSD: cmll_locl.h,v 1.5 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . | 3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . |
4 | * ALL RIGHTS RESERVED. | 4 | * ALL RIGHTS RESERVED. |
@@ -72,13 +72,14 @@ typedef unsigned int u32; | |||
72 | typedef unsigned char u8; | 72 | typedef unsigned char u8; |
73 | 73 | ||
74 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, | 74 | int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, |
75 | KEY_TABLE_TYPE keyTable); | 75 | KEY_TABLE_TYPE keyTable); |
76 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], | 76 | void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[], |
77 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); | 77 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); |
78 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], | 78 | void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[], |
79 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); | 79 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); |
80 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], | 80 | void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], |
81 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); | 81 | const KEY_TABLE_TYPE keyTable, u8 ciphertext[]); |
82 | void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], | 82 | void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], |
83 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); | 83 | const KEY_TABLE_TYPE keyTable, u8 plaintext[]); |
84 | |||
84 | #endif /* #ifndef HEADER_CAMELLIA_LOCL_H */ | 85 | #endif /* #ifndef HEADER_CAMELLIA_LOCL_H */ |
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_misc.c b/src/lib/libssl/src/crypto/camellia/cmll_misc.c index 68b8dc44ff..2fa61dc637 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_misc.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_misc.c,v 1.5 2014/07/12 20:11:45 miod Exp $ */ | 1 | /* $OpenBSD: cmll_misc.c,v 1.6 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -48,7 +48,7 @@ | |||
48 | * ==================================================================== | 48 | * ==================================================================== |
49 | * | 49 | * |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #include <openssl/opensslv.h> | 52 | #include <openssl/opensslv.h> |
53 | #include <openssl/crypto.h> | 53 | #include <openssl/crypto.h> |
54 | #include <openssl/camellia.h> | 54 | #include <openssl/camellia.h> |
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_ofb.c b/src/lib/libssl/src/crypto/camellia/cmll_ofb.c index e276c2a626..cd3a65e2fa 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_ofb.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_ofb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_ofb.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_ofb.c,v 1.4 2014/11/13 20:01:58 miod Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -108,12 +108,15 @@ | |||
108 | #include <openssl/camellia.h> | 108 | #include <openssl/camellia.h> |
109 | #include <openssl/modes.h> | 109 | #include <openssl/modes.h> |
110 | 110 | ||
111 | /* The input and output encrypted as though 128bit ofb mode is being | 111 | /* |
112 | * The input and output encrypted as though 128bit ofb mode is being | ||
112 | * used. The extra state information to record how much of the | 113 | * used. The extra state information to record how much of the |
113 | * 128bit block we have used is contained in *num; | 114 | * 128bit block we have used is contained in *num; |
114 | */ | 115 | */ |
115 | void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, | 116 | void |
116 | size_t length, const CAMELLIA_KEY *key, | 117 | Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, |
117 | unsigned char *ivec, int *num) { | 118 | size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num) |
118 | CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)Camellia_encrypt); | 119 | { |
120 | CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num, | ||
121 | (block128_f)Camellia_encrypt); | ||
119 | } | 122 | } |