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

TOMOYO Linux Cross Reference
Linux/crypto/tcrypt.h

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/tcrypt.h (Version linux-6.11.5) and /crypto/tcrypt.h (Version linux-6.0.19)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later *      1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*                                                  2 /*
  3  * Quick & dirty crypto testing module.             3  * Quick & dirty crypto testing module.
  4  *                                                  4  *
  5  * This will only exist until we have a better      5  * This will only exist until we have a better testing mechanism
  6  * (e.g. a char device).                            6  * (e.g. a char device).
  7  *                                                  7  *
  8  * Copyright (c) 2002 James Morris <jmorris@in      8  * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
  9  * Copyright (c) 2002 Jean-Francois Dive <jef@      9  * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
 10  * Copyright (c) 2007 Nokia Siemens Networks       10  * Copyright (c) 2007 Nokia Siemens Networks
 11  */                                                11  */
 12 #ifndef _CRYPTO_TCRYPT_H                           12 #ifndef _CRYPTO_TCRYPT_H
 13 #define _CRYPTO_TCRYPT_H                           13 #define _CRYPTO_TCRYPT_H
 14                                                    14 
 15 struct cipher_speed_template {                     15 struct cipher_speed_template {
 16         const char *key;                           16         const char *key;
 17         unsigned int klen;                         17         unsigned int klen;
 18 };                                                 18 };
 19                                                    19 
 20 struct aead_speed_template {                       20 struct aead_speed_template {
 21         const char *key;                           21         const char *key;
 22         unsigned int klen;                         22         unsigned int klen;
 23 };                                                 23 };
 24                                                    24 
 25 struct hash_speed {                                25 struct hash_speed {
 26         unsigned int blen;      /* buffer leng     26         unsigned int blen;      /* buffer length */
 27         unsigned int plen;      /* per-update      27         unsigned int plen;      /* per-update length */
 28 };                                                 28 };
 29                                                    29 
 30 /*                                                 30 /*
 31  * DES test vectors.                               31  * DES test vectors.
 32  */                                                32  */
 33 #define DES3_SPEED_VECTORS      1                  33 #define DES3_SPEED_VECTORS      1
 34                                                    34 
 35 static struct cipher_speed_template des3_speed     35 static struct cipher_speed_template des3_speed_template[] = {
 36         {                                          36         {
 37                 .key    = "\x01\x23\x45\x67\x8     37                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
 38                           "\x55\x55\x55\x55\x5     38                           "\x55\x55\x55\x55\x55\x55\x55\x55"
 39                           "\xfe\xdc\xba\x98\x7     39                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
 40                 .klen   = 24,                      40                 .klen   = 24,
 41         }                                          41         }
 42 };                                                 42 };
 43                                                    43 
 44 /*                                                 44 /*
 45  * Cipher speed tests                              45  * Cipher speed tests
 46  */                                                46  */
 47 static u8 speed_template_8[] = {8, 0};             47 static u8 speed_template_8[] = {8, 0};
 48 static u8 speed_template_16[] = {16, 0};           48 static u8 speed_template_16[] = {16, 0};
 49 static u8 speed_template_24[] = {24, 0};           49 static u8 speed_template_24[] = {24, 0};
 50 static u8 speed_template_8_16[] = {8, 16, 0};      50 static u8 speed_template_8_16[] = {8, 16, 0};
 51 static u8 speed_template_8_32[] = {8, 32, 0};      51 static u8 speed_template_8_32[] = {8, 32, 0};
 52 static u8 speed_template_16_32[] = {16, 32, 0}     52 static u8 speed_template_16_32[] = {16, 32, 0};
 53 static u8 speed_template_16_24_32[] = {16, 24,     53 static u8 speed_template_16_24_32[] = {16, 24, 32, 0};
 54 static u8 speed_template_20_28_36[] = {20, 28,     54 static u8 speed_template_20_28_36[] = {20, 28, 36, 0};
 55 static u8 speed_template_32_40_48[] = {32, 40,     55 static u8 speed_template_32_40_48[] = {32, 40, 48, 0};
 56 static u8 speed_template_32_48[] = {32, 48, 0}     56 static u8 speed_template_32_48[] = {32, 48, 0};
 57 static u8 speed_template_32_48_64[] = {32, 48,     57 static u8 speed_template_32_48_64[] = {32, 48, 64, 0};
 58 static u8 speed_template_32_64[] = {32, 64, 0}     58 static u8 speed_template_32_64[] = {32, 64, 0};
 59 static u8 speed_template_32[] = {32, 0};           59 static u8 speed_template_32[] = {32, 0};
 60                                                    60 
 61 /*                                                 61 /*
 62  * AEAD speed tests                                62  * AEAD speed tests
 63  */                                                63  */
 64 static u8 aead_speed_template_19[] = {19, 0};      64 static u8 aead_speed_template_19[] = {19, 0};
 65 static u8 aead_speed_template_20_28_36[] = {20 !!  65 static u8 aead_speed_template_20[] = {20, 0};
 66 static u8 aead_speed_template_36[] = {36, 0};      66 static u8 aead_speed_template_36[] = {36, 0};
 67                                                    67 
 68 /*                                                 68 /*
 69  * Digest speed tests                              69  * Digest speed tests
 70  */                                                70  */
 71 static struct hash_speed generic_hash_speed_te     71 static struct hash_speed generic_hash_speed_template[] = {
 72         { .blen = 16,   .plen = 16, },             72         { .blen = 16,   .plen = 16, },
 73         { .blen = 64,   .plen = 16, },             73         { .blen = 64,   .plen = 16, },
 74         { .blen = 64,   .plen = 64, },             74         { .blen = 64,   .plen = 64, },
 75         { .blen = 256,  .plen = 16, },             75         { .blen = 256,  .plen = 16, },
 76         { .blen = 256,  .plen = 64, },             76         { .blen = 256,  .plen = 64, },
 77         { .blen = 256,  .plen = 256, },            77         { .blen = 256,  .plen = 256, },
 78         { .blen = 1024, .plen = 16, },             78         { .blen = 1024, .plen = 16, },
 79         { .blen = 1024, .plen = 256, },            79         { .blen = 1024, .plen = 256, },
 80         { .blen = 1024, .plen = 1024, },           80         { .blen = 1024, .plen = 1024, },
 81         { .blen = 2048, .plen = 16, },             81         { .blen = 2048, .plen = 16, },
 82         { .blen = 2048, .plen = 256, },            82         { .blen = 2048, .plen = 256, },
 83         { .blen = 2048, .plen = 1024, },           83         { .blen = 2048, .plen = 1024, },
 84         { .blen = 2048, .plen = 2048, },           84         { .blen = 2048, .plen = 2048, },
 85         { .blen = 4096, .plen = 16, },             85         { .blen = 4096, .plen = 16, },
 86         { .blen = 4096, .plen = 256, },            86         { .blen = 4096, .plen = 256, },
 87         { .blen = 4096, .plen = 1024, },           87         { .blen = 4096, .plen = 1024, },
 88         { .blen = 4096, .plen = 4096, },           88         { .blen = 4096, .plen = 4096, },
 89         { .blen = 8192, .plen = 16, },             89         { .blen = 8192, .plen = 16, },
 90         { .blen = 8192, .plen = 256, },            90         { .blen = 8192, .plen = 256, },
 91         { .blen = 8192, .plen = 1024, },           91         { .blen = 8192, .plen = 1024, },
 92         { .blen = 8192, .plen = 4096, },           92         { .blen = 8192, .plen = 4096, },
 93         { .blen = 8192, .plen = 8192, },           93         { .blen = 8192, .plen = 8192, },
 94                                                    94 
 95         /* End marker */                           95         /* End marker */
 96         {  .blen = 0,   .plen = 0, }               96         {  .blen = 0,   .plen = 0, }
 97 };                                                 97 };
 98                                                    98 
 99 static struct hash_speed poly1305_speed_templa     99 static struct hash_speed poly1305_speed_template[] = {
100         { .blen = 96,   .plen = 16, },            100         { .blen = 96,   .plen = 16, },
101         { .blen = 96,   .plen = 32, },            101         { .blen = 96,   .plen = 32, },
102         { .blen = 96,   .plen = 96, },            102         { .blen = 96,   .plen = 96, },
103         { .blen = 288,  .plen = 16, },            103         { .blen = 288,  .plen = 16, },
104         { .blen = 288,  .plen = 32, },            104         { .blen = 288,  .plen = 32, },
105         { .blen = 288,  .plen = 288, },           105         { .blen = 288,  .plen = 288, },
106         { .blen = 1056, .plen = 32, },            106         { .blen = 1056, .plen = 32, },
107         { .blen = 1056, .plen = 1056, },          107         { .blen = 1056, .plen = 1056, },
108         { .blen = 2080, .plen = 32, },            108         { .blen = 2080, .plen = 32, },
109         { .blen = 2080, .plen = 2080, },          109         { .blen = 2080, .plen = 2080, },
110         { .blen = 4128, .plen = 4128, },          110         { .blen = 4128, .plen = 4128, },
111         { .blen = 8224, .plen = 8224, },          111         { .blen = 8224, .plen = 8224, },
112                                                   112 
113         /* End marker */                          113         /* End marker */
114         {  .blen = 0,   .plen = 0, }              114         {  .blen = 0,   .plen = 0, }
115 };                                                115 };
116                                                   116 
117 #endif  /* _CRYPTO_TCRYPT_H */                    117 #endif  /* _CRYPTO_TCRYPT_H */
118                                                   118 

~ [ 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