The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/openzfs/module/icp/algs/skein/skein_iv.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * Pre-computed Skein IVs
    3  *
    4  * NOTE: these values are not "magic" constants, but
    5  * are generated using the Threefish block function.
    6  * They are pre-computed here only for speed; i.e., to
    7  * avoid the need for a Threefish call during Init().
    8  *
    9  * The IV for any fixed hash length may be pre-computed.
   10  * Only the most common values are included here.
   11  */
   12 /* Copyright 2013 Doug Whiting. This code is released to the public domain. */
   13 /*
   14  * Illumos implementation note: these constants are for Skein v1.3 as per:
   15  * http://www.skein-hash.info/sites/default/files/skein1.3.pdf
   16  */
   17 
   18 #include <sys/skein.h>          /* get Skein macros and types */
   19 #include "skein_impl.h"         /* get internal definitions */
   20 
   21 #define MK_64 SKEIN_MK_64
   22 
   23 /* blkSize =  256 bits. hashSize =  128 bits */
   24 const uint64_t SKEIN_256_IV_128[] = {
   25         MK_64(0xE1111906, 0x964D7260),
   26         MK_64(0x883DAAA7, 0x7C8D811C),
   27         MK_64(0x10080DF4, 0x91960F7A),
   28         MK_64(0xCCF7DDE5, 0xB45BC1C2)
   29 };
   30 
   31 /* blkSize =  256 bits. hashSize =  160 bits */
   32 const uint64_t SKEIN_256_IV_160[] = {
   33         MK_64(0x14202314, 0x72825E98),
   34         MK_64(0x2AC4E9A2, 0x5A77E590),
   35         MK_64(0xD47A5856, 0x8838D63E),
   36         MK_64(0x2DD2E496, 0x8586AB7D)
   37 };
   38 
   39 /* blkSize =  256 bits. hashSize =  224 bits */
   40 const uint64_t SKEIN_256_IV_224[] = {
   41         MK_64(0xC6098A8C, 0x9AE5EA0B),
   42         MK_64(0x876D5686, 0x08C5191C),
   43         MK_64(0x99CB88D7, 0xD7F53884),
   44         MK_64(0x384BDDB1, 0xAEDDB5DE)
   45 };
   46 
   47 /* blkSize =  256 bits. hashSize =  256 bits */
   48 const uint64_t SKEIN_256_IV_256[] = {
   49         MK_64(0xFC9DA860, 0xD048B449),
   50         MK_64(0x2FCA6647, 0x9FA7D833),
   51         MK_64(0xB33BC389, 0x6656840F),
   52         MK_64(0x6A54E920, 0xFDE8DA69)
   53 };
   54 
   55 /* blkSize =  512 bits. hashSize =  224 bits */
   56 const uint64_t SKEIN_512_IV_224[] = {
   57         MK_64(0xCCD06162, 0x48677224),
   58         MK_64(0xCBA65CF3, 0xA92339EF),
   59         MK_64(0x8CCD69D6, 0x52FF4B64),
   60         MK_64(0x398AED7B, 0x3AB890B4),
   61         MK_64(0x0F59D1B1, 0x457D2BD0),
   62         MK_64(0x6776FE65, 0x75D4EB3D),
   63         MK_64(0x99FBC70E, 0x997413E9),
   64         MK_64(0x9E2CFCCF, 0xE1C41EF7)
   65 };
   66 
   67 /* blkSize =  512 bits. hashSize =  256 bits */
   68 const uint64_t SKEIN_512_IV_256[] = {
   69         MK_64(0xCCD044A1, 0x2FDB3E13),
   70         MK_64(0xE8359030, 0x1A79A9EB),
   71         MK_64(0x55AEA061, 0x4F816E6F),
   72         MK_64(0x2A2767A4, 0xAE9B94DB),
   73         MK_64(0xEC06025E, 0x74DD7683),
   74         MK_64(0xE7A436CD, 0xC4746251),
   75         MK_64(0xC36FBAF9, 0x393AD185),
   76         MK_64(0x3EEDBA18, 0x33EDFC13)
   77 };
   78 
   79 /* blkSize =  512 bits. hashSize =  384 bits */
   80 const uint64_t SKEIN_512_IV_384[] = {
   81         MK_64(0xA3F6C6BF, 0x3A75EF5F),
   82         MK_64(0xB0FEF9CC, 0xFD84FAA4),
   83         MK_64(0x9D77DD66, 0x3D770CFE),
   84         MK_64(0xD798CBF3, 0xB468FDDA),
   85         MK_64(0x1BC4A666, 0x8A0E4465),
   86         MK_64(0x7ED7D434, 0xE5807407),
   87         MK_64(0x548FC1AC, 0xD4EC44D6),
   88         MK_64(0x266E1754, 0x6AA18FF8)
   89 };
   90 
   91 /* blkSize =  512 bits. hashSize =  512 bits */
   92 const uint64_t SKEIN_512_IV_512[] = {
   93         MK_64(0x4903ADFF, 0x749C51CE),
   94         MK_64(0x0D95DE39, 0x9746DF03),
   95         MK_64(0x8FD19341, 0x27C79BCE),
   96         MK_64(0x9A255629, 0xFF352CB1),
   97         MK_64(0x5DB62599, 0xDF6CA7B0),
   98         MK_64(0xEABE394C, 0xA9D5C3F4),
   99         MK_64(0x991112C7, 0x1A75B523),
  100         MK_64(0xAE18A40B, 0x660FCC33)
  101 };
  102 
  103 /* blkSize = 1024 bits. hashSize =  384 bits */
  104 const uint64_t SKEIN1024_IV_384[] = {
  105         MK_64(0x5102B6B8, 0xC1894A35),
  106         MK_64(0xFEEBC9E3, 0xFE8AF11A),
  107         MK_64(0x0C807F06, 0xE32BED71),
  108         MK_64(0x60C13A52, 0xB41A91F6),
  109         MK_64(0x9716D35D, 0xD4917C38),
  110         MK_64(0xE780DF12, 0x6FD31D3A),
  111         MK_64(0x797846B6, 0xC898303A),
  112         MK_64(0xB172C2A8, 0xB3572A3B),
  113         MK_64(0xC9BC8203, 0xA6104A6C),
  114         MK_64(0x65909338, 0xD75624F4),
  115         MK_64(0x94BCC568, 0x4B3F81A0),
  116         MK_64(0x3EBBF51E, 0x10ECFD46),
  117         MK_64(0x2DF50F0B, 0xEEB08542),
  118         MK_64(0x3B5A6530, 0x0DBC6516),
  119         MK_64(0x484B9CD2, 0x167BBCE1),
  120         MK_64(0x2D136947, 0xD4CBAFEA)
  121 };
  122 
  123 /* blkSize = 1024 bits. hashSize =  512 bits */
  124 const uint64_t SKEIN1024_IV_512[] = {
  125         MK_64(0xCAEC0E5D, 0x7C1B1B18),
  126         MK_64(0xA01B0E04, 0x5F03E802),
  127         MK_64(0x33840451, 0xED912885),
  128         MK_64(0x374AFB04, 0xEAEC2E1C),
  129         MK_64(0xDF25A0E2, 0x813581F7),
  130         MK_64(0xE4004093, 0x8B12F9D2),
  131         MK_64(0xA662D539, 0xC2ED39B6),
  132         MK_64(0xFA8B85CF, 0x45D8C75A),
  133         MK_64(0x8316ED8E, 0x29EDE796),
  134         MK_64(0x053289C0, 0x2E9F91B8),
  135         MK_64(0xC3F8EF1D, 0x6D518B73),
  136         MK_64(0xBDCEC3C4, 0xD5EF332E),
  137         MK_64(0x549A7E52, 0x22974487),
  138         MK_64(0x67070872, 0x5B749816),
  139         MK_64(0xB9CD28FB, 0xF0581BD1),
  140         MK_64(0x0E2940B8, 0x15804974)
  141 };
  142 
  143 /* blkSize = 1024 bits. hashSize = 1024 bits */
  144 const uint64_t SKEIN1024_IV_1024[] = {
  145         MK_64(0xD593DA07, 0x41E72355),
  146         MK_64(0x15B5E511, 0xAC73E00C),
  147         MK_64(0x5180E5AE, 0xBAF2C4F0),
  148         MK_64(0x03BD41D3, 0xFCBCAFAF),
  149         MK_64(0x1CAEC6FD, 0x1983A898),
  150         MK_64(0x6E510B8B, 0xCDD0589F),
  151         MK_64(0x77E2BDFD, 0xC6394ADA),
  152         MK_64(0xC11E1DB5, 0x24DCB0A3),
  153         MK_64(0xD6D14AF9, 0xC6329AB5),
  154         MK_64(0x6A9B0BFC, 0x6EB67E0D),
  155         MK_64(0x9243C60D, 0xCCFF1332),
  156         MK_64(0x1A1F1DDE, 0x743F02D4),
  157         MK_64(0x0996753C, 0x10ED0BB8),
  158         MK_64(0x6572DD22, 0xF2B4969A),
  159         MK_64(0x61FD3062, 0xD00A579A),
  160         MK_64(0x1DE0536E, 0x8682E539)
  161 };

Cache object: b91f27497525b9f7b53594ddd4c44f12


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.