~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/crypto/cast6_generic.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /crypto/cast6_generic.c (Version linux-6.11.5) and /crypto/cast6_generic.c (Version linux-2.6.0)


  1 // SPDX-License-Identifier: GPL-2.0-or-later        1 
  2 /* Kernel cryptographic api.                      
  3  * cast6.c - Cast6 cipher algorithm [rfc2612].    
  4  *                                                
  5  * CAST-256 (*cast6*) is a DES like Substituti    
  6  * cryptosystem built upon the CAST-128 (*cast    
  7  * algorithm.                                     
  8  *                                                
  9  * Copyright (C) 2003 Kartikey Mahendra Bhatt     
 10  */                                               
 11                                                   
 12                                                   
 13 #include <asm/unaligned.h>                        
 14 #include <crypto/algapi.h>                        
 15 #include <linux/init.h>                           
 16 #include <linux/module.h>                         
 17 #include <linux/errno.h>                          
 18 #include <linux/string.h>                         
 19 #include <linux/types.h>                          
 20 #include <crypto/cast6.h>                         
 21                                                   
 22 #define s1 cast_s1                                
 23 #define s2 cast_s2                                
 24 #define s3 cast_s3                                
 25 #define s4 cast_s4                                
 26                                                   
 27 #define F1(D, r, m)  ((I = ((m) + (D))), (I =     
 28         (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s    
 29 #define F2(D, r, m)  ((I = ((m) ^ (D))), (I =     
 30         (((s1[I >> 24] - s2[(I>>16)&0xff]) + s    
 31 #define F3(D, r, m)  ((I = ((m) - (D))), (I =     
 32         (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s    
 33                                                   
 34 static const u32 Tm[24][8] = {                    
 35         { 0x5a827999, 0xc95c653a, 0x383650db,     
 36                 0x84c413be, 0xf39dff5f, 0x6277    
 37         { 0xd151d6a1, 0x402bc242, 0xaf05ade3,     
 38                 0xfb9370c6, 0x6a6d5c67, 0xd947    
 39         { 0x482133a9, 0xb6fb1f4a, 0x25d50aeb,     
 40                 0x7262cdce, 0xe13cb96f, 0x5016    
 41         { 0xbef090b1, 0x2dca7c52, 0x9ca467f3,     
 42                 0xe9322ad6, 0x580c1677, 0xc6e6    
 43         { 0x35bfedb9, 0xa499d95a, 0x1373c4fb,     
 44                 0x600187de, 0xcedb737f, 0x3db5    
 45         { 0xac8f4ac1, 0x1b693662, 0x8a432203,     
 46                 0xd6d0e4e6, 0x45aad087, 0xb484    
 47         { 0x235ea7c9, 0x9238936a, 0x01127f0b,     
 48                 0x4da041ee, 0xbc7a2d8f, 0x2b54    
 49         { 0x9a2e04d1, 0x0907f072, 0x77e1dc13,     
 50                 0xc46f9ef6, 0x33498a97, 0xa223    
 51         { 0x10fd61d9, 0x7fd74d7a, 0xeeb1391b,     
 52                 0x3b3efbfe, 0xaa18e79f, 0x18f2    
 53         { 0x87ccbee1, 0xf6a6aa82, 0x65809623,     
 54                 0xb20e5906, 0x20e844a7, 0x8fc2    
 55         { 0xfe9c1be9, 0x6d76078a, 0xdc4ff32b,     
 56                 0x28ddb60e, 0x97b7a1af, 0x0691    
 57         { 0x756b78f1, 0xe4456492, 0x531f5033,     
 58                 0x9fad1316, 0x0e86feb7, 0x7d60    
 59         { 0xec3ad5f9, 0x5b14c19a, 0xc9eead3b,     
 60                 0x167c701e, 0x85565bbf, 0xf430    
 61         { 0x630a3301, 0xd1e41ea2, 0x40be0a43,     
 62                 0x8d4bcd26, 0xfc25b8c7, 0x6aff    
 63         { 0xd9d99009, 0x48b37baa, 0xb78d674b,     
 64                 0x041b2a2e, 0x72f515cf, 0xe1cf    
 65         { 0x50a8ed11, 0xbf82d8b2, 0x2e5cc453,     
 66                 0x7aea8736, 0xe9c472d7, 0x589e    
 67         { 0xc7784a19, 0x365235ba, 0xa52c215b,     
 68                 0xf1b9e43e, 0x6093cfdf, 0xcf6d    
 69         { 0x3e47a721, 0xad2192c2, 0x1bfb7e63,     
 70                 0x68894146, 0xd7632ce7, 0x463d    
 71         { 0xb5170429, 0x23f0efca, 0x92cadb6b,     
 72                 0xdf589e4e, 0x4e3289ef, 0xbd0c    
 73         { 0x2be66131, 0x9ac04cd2, 0x099a3873,     
 74                 0x5627fb56, 0xc501e6f7, 0x33db    
 75         { 0xa2b5be39, 0x118fa9da, 0x8069957b,     
 76                 0xccf7585e, 0x3bd143ff, 0xaaab    
 77         { 0x19851b41, 0x885f06e2, 0xf738f283,     
 78                 0x43c6b566, 0xb2a0a107, 0x217a    
 79         { 0x90547849, 0xff2e63ea, 0x6e084f8b,     
 80                 0xba96126e, 0x296ffe0f, 0x9849    
 81         { 0x0723d551, 0x75fdc0f2, 0xe4d7ac93,     
 82                 0x31656f76, 0xa03f5b17, 0x0f19    
 83 };                                                
 84                                                   
 85 static const u8 Tr[4][8] = {                      
 86         { 0x13, 0x04, 0x15, 0x06, 0x17, 0x08,     
 87         { 0x1b, 0x0c, 0x1d, 0x0e, 0x1f, 0x10,     
 88         { 0x03, 0x14, 0x05, 0x16, 0x07, 0x18,     
 89         { 0x0b, 0x1c, 0x0d, 0x1e, 0x0f, 0x00,     
 90 };                                                
 91                                                   
 92 /* forward octave */                              
 93 static inline void W(u32 *key, unsigned int i)    
 94 {                                                 
 95         u32 I;                                    
 96         key[6] ^= F1(key[7], Tr[i % 4][0], Tm[    
 97         key[5] ^= F2(key[6], Tr[i % 4][1], Tm[    
 98         key[4] ^= F3(key[5], Tr[i % 4][2], Tm[    
 99         key[3] ^= F1(key[4], Tr[i % 4][3], Tm[    
100         key[2] ^= F2(key[3], Tr[i % 4][4], Tm[    
101         key[1] ^= F3(key[2], Tr[i % 4][5], Tm[    
102         key[0] ^= F1(key[1], Tr[i % 4][6], Tm[    
103         key[7] ^= F2(key[0], Tr[i % 4][7], Tm[    
104 }                                                 
105                                                   
106 int __cast6_setkey(struct cast6_ctx *c, const     
107 {                                                 
108         int i;                                    
109         u32 key[8];                               
110         __be32 p_key[8]; /* padded key */         
111                                                   
112         if (key_len % 4 != 0)                     
113                 return -EINVAL;                   
114                                                   
115         memset(p_key, 0, 32);                     
116         memcpy(p_key, in_key, key_len);           
117                                                   
118         key[0] = be32_to_cpu(p_key[0]);           
119         key[1] = be32_to_cpu(p_key[1]);           
120         key[2] = be32_to_cpu(p_key[2]);           
121         key[3] = be32_to_cpu(p_key[3]);           
122         key[4] = be32_to_cpu(p_key[4]);           
123         key[5] = be32_to_cpu(p_key[5]);           
124         key[6] = be32_to_cpu(p_key[6]);           
125         key[7] = be32_to_cpu(p_key[7]);           
126                                                   
127         for (i = 0; i < 12; i++) {                
128                 W(key, 2 * i);                    
129                 W(key, 2 * i + 1);                
130                                                   
131                 c->Kr[i][0] = key[0] & 0x1f;      
132                 c->Kr[i][1] = key[2] & 0x1f;      
133                 c->Kr[i][2] = key[4] & 0x1f;      
134                 c->Kr[i][3] = key[6] & 0x1f;      
135                                                   
136                 c->Km[i][0] = key[7];             
137                 c->Km[i][1] = key[5];             
138                 c->Km[i][2] = key[3];             
139                 c->Km[i][3] = key[1];             
140         }                                         
141                                                   
142         return 0;                                 
143 }                                                 
144 EXPORT_SYMBOL_GPL(__cast6_setkey);                
145                                                   
146 int cast6_setkey(struct crypto_tfm *tfm, const    
147 {                                                 
148         return __cast6_setkey(crypto_tfm_ctx(t    
149 }                                                 
150 EXPORT_SYMBOL_GPL(cast6_setkey);                  
151                                                   
152 /*forward quad round*/                            
153 static inline void Q(u32 *block, const u8 *Kr,    
154 {                                                 
155         u32 I;                                    
156         block[2] ^= F1(block[3], Kr[0], Km[0])    
157         block[1] ^= F2(block[2], Kr[1], Km[1])    
158         block[0] ^= F3(block[1], Kr[2], Km[2])    
159         block[3] ^= F1(block[0], Kr[3], Km[3])    
160 }                                                 
161                                                   
162 /*reverse quad round*/                            
163 static inline void QBAR(u32 *block, const u8 *    
164 {                                                 
165         u32 I;                                    
166         block[3] ^= F1(block[0], Kr[3], Km[3])    
167         block[0] ^= F3(block[1], Kr[2], Km[2])    
168         block[1] ^= F2(block[2], Kr[1], Km[1])    
169         block[2] ^= F1(block[3], Kr[0], Km[0])    
170 }                                                 
171                                                   
172 void __cast6_encrypt(const void *ctx, u8 *outb    
173 {                                                 
174         const struct cast6_ctx *c = ctx;          
175         u32 block[4];                             
176         const u32 *Km;                            
177         const u8 *Kr;                             
178                                                   
179         block[0] = get_unaligned_be32(inbuf);     
180         block[1] = get_unaligned_be32(inbuf +     
181         block[2] = get_unaligned_be32(inbuf +     
182         block[3] = get_unaligned_be32(inbuf +     
183                                                   
184         Km = c->Km[0]; Kr = c->Kr[0]; Q(block,    
185         Km = c->Km[1]; Kr = c->Kr[1]; Q(block,    
186         Km = c->Km[2]; Kr = c->Kr[2]; Q(block,    
187         Km = c->Km[3]; Kr = c->Kr[3]; Q(block,    
188         Km = c->Km[4]; Kr = c->Kr[4]; Q(block,    
189         Km = c->Km[5]; Kr = c->Kr[5]; Q(block,    
190         Km = c->Km[6]; Kr = c->Kr[6]; QBAR(blo    
191         Km = c->Km[7]; Kr = c->Kr[7]; QBAR(blo    
192         Km = c->Km[8]; Kr = c->Kr[8]; QBAR(blo    
193         Km = c->Km[9]; Kr = c->Kr[9]; QBAR(blo    
194         Km = c->Km[10]; Kr = c->Kr[10]; QBAR(b    
195         Km = c->Km[11]; Kr = c->Kr[11]; QBAR(b    
196                                                   
197         put_unaligned_be32(block[0], outbuf);     
198         put_unaligned_be32(block[1], outbuf +     
199         put_unaligned_be32(block[2], outbuf +     
200         put_unaligned_be32(block[3], outbuf +     
201 }                                                 
202 EXPORT_SYMBOL_GPL(__cast6_encrypt);               
203                                                   
204 static void cast6_encrypt(struct crypto_tfm *t    
205 {                                                 
206         __cast6_encrypt(crypto_tfm_ctx(tfm), o    
207 }                                                 
208                                                   
209 void __cast6_decrypt(const void *ctx, u8 *outb    
210 {                                                 
211         const struct cast6_ctx *c = ctx;          
212         u32 block[4];                             
213         const u32 *Km;                            
214         const u8 *Kr;                             
215                                                   
216         block[0] = get_unaligned_be32(inbuf);     
217         block[1] = get_unaligned_be32(inbuf +     
218         block[2] = get_unaligned_be32(inbuf +     
219         block[3] = get_unaligned_be32(inbuf +     
220                                                   
221         Km = c->Km[11]; Kr = c->Kr[11]; Q(bloc    
222         Km = c->Km[10]; Kr = c->Kr[10]; Q(bloc    
223         Km = c->Km[9]; Kr = c->Kr[9]; Q(block,    
224         Km = c->Km[8]; Kr = c->Kr[8]; Q(block,    
225         Km = c->Km[7]; Kr = c->Kr[7]; Q(block,    
226         Km = c->Km[6]; Kr = c->Kr[6]; Q(block,    
227         Km = c->Km[5]; Kr = c->Kr[5]; QBAR(blo    
228         Km = c->Km[4]; Kr = c->Kr[4]; QBAR(blo    
229         Km = c->Km[3]; Kr = c->Kr[3]; QBAR(blo    
230         Km = c->Km[2]; Kr = c->Kr[2]; QBAR(blo    
231         Km = c->Km[1]; Kr = c->Kr[1]; QBAR(blo    
232         Km = c->Km[0]; Kr = c->Kr[0]; QBAR(blo    
233                                                   
234         put_unaligned_be32(block[0], outbuf);     
235         put_unaligned_be32(block[1], outbuf +     
236         put_unaligned_be32(block[2], outbuf +     
237         put_unaligned_be32(block[3], outbuf +     
238 }                                                 
239 EXPORT_SYMBOL_GPL(__cast6_decrypt);               
240                                                   
241 static void cast6_decrypt(struct crypto_tfm *t    
242 {                                                 
243         __cast6_decrypt(crypto_tfm_ctx(tfm), o    
244 }                                                 
245                                                   
246 static struct crypto_alg alg = {                  
247         .cra_name = "cast6",                      
248         .cra_driver_name = "cast6-generic",       
249         .cra_priority = 100,                      
250         .cra_flags = CRYPTO_ALG_TYPE_CIPHER,      
251         .cra_blocksize = CAST6_BLOCK_SIZE,        
252         .cra_ctxsize = sizeof(struct cast6_ctx    
253         .cra_module = THIS_MODULE,                
254         .cra_u = {                                
255                   .cipher = {                     
256                              .cia_min_keysize     
257                              .cia_max_keysize     
258                              .cia_setkey = cas    
259                              .cia_encrypt = ca    
260                              .cia_decrypt = ca    
261                   }                               
262 };                                                
263                                                   
264 static int __init cast6_mod_init(void)            
265 {                                                 
266         return crypto_register_alg(&alg);         
267 }                                                 
268                                                   
269 static void __exit cast6_mod_fini(void)           
270 {                                                 
271         crypto_unregister_alg(&alg);              
272 }                                                 
273                                                   
274 subsys_initcall(cast6_mod_init);                  
275 module_exit(cast6_mod_fini);                      
276                                                   
277 MODULE_LICENSE("GPL");                            
278 MODULE_DESCRIPTION("Cast6 Cipher Algorithm");     
279 MODULE_ALIAS_CRYPTO("cast6");                     
280 MODULE_ALIAS_CRYPTO("cast6-generic");             
281                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php