blake2_impl.h 3.1 KB
Newer Older
B
Bill Cox 已提交
1 2
/*
 * Copyright 2012, Samuel Neves <sneves@dei.uc.pt>.
K
Kurt Roeckx 已提交
3
 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
B
Bill Cox 已提交
4
 *
K
Kurt Roeckx 已提交
5 6 7 8 9
 * Licensed under the OpenSSL licenses, (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * https://www.openssl.org/source/license.html
 * or in the file LICENSE in the source distribution.
B
Bill Cox 已提交
10 11
 */

K
Kurt Roeckx 已提交
12 13 14 15 16
/*
 * Derived from the BLAKE2 reference implementation written by Samuel Neves.
 * More information about the BLAKE2 hash function and its implementations
 * can be found at https://blake2.net.
 */
B
Bill Cox 已提交
17 18

#include <string.h>
K
Kurt Roeckx 已提交
19
#include "e_os.h"
B
Bill Cox 已提交
20

21
static ossl_inline uint32_t load32(const uint8_t *src)
B
Bill Cox 已提交
22
{
K
Kurt Roeckx 已提交
23 24 25 26 27 28 29 30 31 32
    const union {
        long one;
        char little;
    } is_endian = { 1 };

    if (is_endian.little) {
        uint32_t w;
        memcpy(&w, src, sizeof(w));
        return w;
    } else {
33 34 35 36
        uint32_t w = *src++;
        w |= (uint32_t)(*src++) <<  8;
        w |= (uint32_t)(*src++) << 16;
        w |= (uint32_t)(*src++) << 24;
K
Kurt Roeckx 已提交
37 38
        return w;
    }
B
Bill Cox 已提交
39 40
}

41
static ossl_inline uint64_t load64(const uint8_t *src)
B
Bill Cox 已提交
42
{
K
Kurt Roeckx 已提交
43 44 45 46 47 48 49 50 51 52
    const union {
        long one;
        char little;
    } is_endian = { 1 };

    if (is_endian.little) {
        uint64_t w;
        memcpy(&w, src, sizeof(w));
        return w;
    } else {
53 54 55 56 57 58 59 60
        uint64_t w = *src++;
        w |= (uint64_t)(*src++) <<  8;
        w |= (uint64_t)(*src++) << 16;
        w |= (uint64_t)(*src++) << 24;
        w |= (uint64_t)(*src++) << 32;
        w |= (uint64_t)(*src++) << 40;
        w |= (uint64_t)(*src++) << 48;
        w |= (uint64_t)(*src++) << 56;
K
Kurt Roeckx 已提交
61 62
        return w;
    }
B
Bill Cox 已提交
63 64
}

65
static ossl_inline void store32(uint8_t *dst, uint32_t w)
B
Bill Cox 已提交
66
{
K
Kurt Roeckx 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80
    const union {
        long one;
        char little;
    } is_endian = { 1 };

    if (is_endian.little) {
        memcpy(dst, &w, sizeof(w));
    } else {
        uint8_t *p = (uint8_t *)dst;
        int i;

        for (i = 0; i < 4; i++)
            p[i] = (uint8_t)(w >> (8 * i));
    }
B
Bill Cox 已提交
81 82
}

83
static ossl_inline void store64(uint8_t *dst, uint64_t w)
B
Bill Cox 已提交
84
{
K
Kurt Roeckx 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98
    const union {
        long one;
        char little;
    } is_endian = { 1 };

    if (is_endian.little) {
        memcpy(dst, &w, sizeof(w));
    } else {
        uint8_t *p = (uint8_t *)dst;
        int i;

        for (i = 0; i < 8; i++)
            p[i] = (uint8_t)(w >> (8 * i));
    }
B
Bill Cox 已提交
99 100
}

101
static ossl_inline uint64_t load48(const uint8_t *src)
B
Bill Cox 已提交
102
{
103 104 105 106 107 108
    uint64_t w = *src++;
    w |= (uint64_t)(*src++) <<  8;
    w |= (uint64_t)(*src++) << 16;
    w |= (uint64_t)(*src++) << 24;
    w |= (uint64_t)(*src++) << 32;
    w |= (uint64_t)(*src++) << 40;
B
Bill Cox 已提交
109 110 111
    return w;
}

112
static ossl_inline void store48(uint8_t *dst, uint64_t w)
B
Bill Cox 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
{
    uint8_t *p = (uint8_t *)dst;
    *p++ = (uint8_t)w;
    w >>= 8;
    *p++ = (uint8_t)w;
    w >>= 8;
    *p++ = (uint8_t)w;
    w >>= 8;
    *p++ = (uint8_t)w;
    w >>= 8;
    *p++ = (uint8_t)w;
    w >>= 8;
    *p++ = (uint8_t)w;
}

128
static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c)
B
Bill Cox 已提交
129 130 131 132
{
    return (w >> c) | (w << (32 - c));
}

133
static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c)
B
Bill Cox 已提交
134 135 136
{
    return (w >> c) | (w << (64 - c));
}