Home | History | Annotate | Download | only in impl
      1 /*
      2    BLAKE2 reference source code package - optimized C implementations
      3 
      4    Copyright 2012, Samuel Neves <sneves (at) dei.uc.pt>.  You may use this under the
      5    terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at
      6    your option.  The terms of these licenses can be found at:
      7 
      8    - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
      9    - OpenSSL license   : https://www.openssl.org/source/license.html
     10    - Apache 2.0        : http://www.apache.org/licenses/LICENSE-2.0
     11 
     12    More information about the BLAKE2 hash function can be found at
     13    https://blake2.net.
     14 */
     15 #pragma once
     16 #ifndef __BLAKE2S_LOAD_SSE2_H__
     17 #define __BLAKE2S_LOAD_SSE2_H__
     18 
     19 #define LOAD_MSG_0_1(buf) buf = _mm_set_epi32(m6,m4,m2,m0)
     20 #define LOAD_MSG_0_2(buf) buf = _mm_set_epi32(m7,m5,m3,m1)
     21 #define LOAD_MSG_0_3(buf) buf = _mm_set_epi32(m14,m12,m10,m8)
     22 #define LOAD_MSG_0_4(buf) buf = _mm_set_epi32(m15,m13,m11,m9)
     23 #define LOAD_MSG_1_1(buf) buf = _mm_set_epi32(m13,m9,m4,m14)
     24 #define LOAD_MSG_1_2(buf) buf = _mm_set_epi32(m6,m15,m8,m10)
     25 #define LOAD_MSG_1_3(buf) buf = _mm_set_epi32(m5,m11,m0,m1)
     26 #define LOAD_MSG_1_4(buf) buf = _mm_set_epi32(m3,m7,m2,m12)
     27 #define LOAD_MSG_2_1(buf) buf = _mm_set_epi32(m15,m5,m12,m11)
     28 #define LOAD_MSG_2_2(buf) buf = _mm_set_epi32(m13,m2,m0,m8)
     29 #define LOAD_MSG_2_3(buf) buf = _mm_set_epi32(m9,m7,m3,m10)
     30 #define LOAD_MSG_2_4(buf) buf = _mm_set_epi32(m4,m1,m6,m14)
     31 #define LOAD_MSG_3_1(buf) buf = _mm_set_epi32(m11,m13,m3,m7)
     32 #define LOAD_MSG_3_2(buf) buf = _mm_set_epi32(m14,m12,m1,m9)
     33 #define LOAD_MSG_3_3(buf) buf = _mm_set_epi32(m15,m4,m5,m2)
     34 #define LOAD_MSG_3_4(buf) buf = _mm_set_epi32(m8,m0,m10,m6)
     35 #define LOAD_MSG_4_1(buf) buf = _mm_set_epi32(m10,m2,m5,m9)
     36 #define LOAD_MSG_4_2(buf) buf = _mm_set_epi32(m15,m4,m7,m0)
     37 #define LOAD_MSG_4_3(buf) buf = _mm_set_epi32(m3,m6,m11,m14)
     38 #define LOAD_MSG_4_4(buf) buf = _mm_set_epi32(m13,m8,m12,m1)
     39 #define LOAD_MSG_5_1(buf) buf = _mm_set_epi32(m8,m0,m6,m2)
     40 #define LOAD_MSG_5_2(buf) buf = _mm_set_epi32(m3,m11,m10,m12)
     41 #define LOAD_MSG_5_3(buf) buf = _mm_set_epi32(m1,m15,m7,m4)
     42 #define LOAD_MSG_5_4(buf) buf = _mm_set_epi32(m9,m14,m5,m13)
     43 #define LOAD_MSG_6_1(buf) buf = _mm_set_epi32(m4,m14,m1,m12)
     44 #define LOAD_MSG_6_2(buf) buf = _mm_set_epi32(m10,m13,m15,m5)
     45 #define LOAD_MSG_6_3(buf) buf = _mm_set_epi32(m8,m9,m6,m0)
     46 #define LOAD_MSG_6_4(buf) buf = _mm_set_epi32(m11,m2,m3,m7)
     47 #define LOAD_MSG_7_1(buf) buf = _mm_set_epi32(m3,m12,m7,m13)
     48 #define LOAD_MSG_7_2(buf) buf = _mm_set_epi32(m9,m1,m14,m11)
     49 #define LOAD_MSG_7_3(buf) buf = _mm_set_epi32(m2,m8,m15,m5)
     50 #define LOAD_MSG_7_4(buf) buf = _mm_set_epi32(m10,m6,m4,m0)
     51 #define LOAD_MSG_8_1(buf) buf = _mm_set_epi32(m0,m11,m14,m6)
     52 #define LOAD_MSG_8_2(buf) buf = _mm_set_epi32(m8,m3,m9,m15)
     53 #define LOAD_MSG_8_3(buf) buf = _mm_set_epi32(m10,m1,m13,m12)
     54 #define LOAD_MSG_8_4(buf) buf = _mm_set_epi32(m5,m4,m7,m2)
     55 #define LOAD_MSG_9_1(buf) buf = _mm_set_epi32(m1,m7,m8,m10)
     56 #define LOAD_MSG_9_2(buf) buf = _mm_set_epi32(m5,m6,m4,m2)
     57 #define LOAD_MSG_9_3(buf) buf = _mm_set_epi32(m13,m3,m9,m15)
     58 #define LOAD_MSG_9_4(buf) buf = _mm_set_epi32(m0,m12,m14,m11)
     59 
     60 
     61 #endif
     62