Skip to content
Snippets Groups Projects
Select Git revision
  • d4847b52087253446ccf9a15d3e6e40e77c5950f
  • master default
  • jas-ci-test
  • wip-slh-dsa-sha2-128s
  • master-updates
  • release-3.10-fixes
  • getopt-prototype
  • fix-bcrypt-warning
  • refactor-hmac
  • wip-use-alignas
  • trim-sha3-context
  • fix-gitlab-ci
  • check-fat-emulate
  • delete-digest_func-size
  • slh-dsa-shake-128f-nettle
  • slh-dsa-shake-128s-nettle
  • slh-dsa-shake-128s
  • delete-openpgp
  • ppc64-sha512
  • delete-md5-compat
  • cleanup-hmac-tests
  • nettle_3.10.2_release_20250626
  • nettle_3.10.1_release_20241230
  • nettle_3.10_release_20240616
  • nettle_3.10rc2
  • nettle_3.10rc1
  • nettle_3.9.1_release_20230601
  • nettle_3.9_release_20230514
  • nettle_3.8.1_release_20220727
  • nettle_3.8_release_20220602
  • nettle_3.7.3_release_20210606
  • nettle_3.7.2_release_20210321
  • nettle_3.7.1_release_20210217
  • nettle_3.7_release_20210104
  • nettle_3.7rc1
  • nettle_3.6_release_20200429
  • nettle_3.6rc3
  • nettle_3.6rc2
  • nettle_3.6rc1
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
41 results

umac-l2.c

Blame
  • user avatar
    Nikos Mavrogiannopoulos authored and Niels Möller committed
    This adds all exported symbols in the map files explicitly under
    the following rules:
     - Symbols mentioned in internal headers go in a section which is
       valid only for testing, and linking with these symbols will break
       in library updates.
     - Symbols mentioned in installed headers go in the exported sections
       and are considered part of the ABI.
     - All internal symbols move to internal headers.
     - The _nettle_md5_compress and _nettle_sha1_compress become exported
       without the _nettle prefix, due to existing usage.
    da81c86a
    History
    umac-l2.c 3.46 KiB
    /* umac-l2.c
    
       Copyright (C) 2013 Niels Möller
    
       This file is part of GNU Nettle.
    
       GNU Nettle is free software: you can redistribute it and/or
       modify it under the terms of either:
    
         * the GNU Lesser General Public License as published by the Free
           Software Foundation; either version 3 of the License, or (at your
           option) any later version.
    
       or
    
         * the GNU General Public License as published by the Free
           Software Foundation; either version 2 of the License, or (at your
           option) any later version.
    
       or both in parallel, as here.
    
       GNU Nettle is distributed in the hope that it will be useful,
       but WITHOUT ANY WARRANTY; without even the implied warranty of
       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       General Public License for more details.
    
       You should have received copies of the GNU General Public License and
       the GNU Lesser General Public License along with this program.  If
       not, see http://www.gnu.org/licenses/.
    */
    
    #if HAVE_CONFIG_H
    # include "config.h"
    #endif
    
    #include <assert.h>
    #include <string.h>
    
    #include "umac.h"
    #include "umac-internal.h"
    
    #include "macros.h"
    
    /* Same mask applied to low and high halves */
    #define KEY_MASK 0x01ffffffUL
    
    #if WORDS_BIGENDIAN
    #define BE_SWAP32(x) x
    #else
    #define BE_SWAP32(x)				\
      ((ROTL32(8,  x) & 0x00FF00FFUL) |		\
       (ROTL32(24, x) & 0xFF00FF00UL))
    #endif
    
    void
    _umac_l2_init (unsigned size, uint32_t *k)
    {
      unsigned i;
      for (i = 0; i < size; i++)
        {
          uint32_t w = k[i];
          w = BE_SWAP32 (w);
          k[i] = w & KEY_MASK;
        }
    }
    
    void
    _umac_l2(const uint32_t *key, uint64_t *state, unsigned n,
    	 uint64_t count, const uint64_t *m)
    {
      uint64_t *prev = state + 2*n;
      unsigned i;
    
      if (count == 0)
        memcpy (prev, m, n * sizeof(*m));
      else if (count == 1)
        for (i = 0; i < n; i++, key += 6)
          {
    	uint64_t y = _umac_poly64 (key[0], key[1], 1, prev[i]);
    	state[2*i+1] = _umac_poly64 (key[0], key[1], y, m[i]);
          }
      else if (count < UMAC_POLY64_BLOCKS)
        for (i = 0; i < n; i++, key += 6)
          state[2*i+1] = _umac_poly64 (key[0], key[1], state[2*i+1], m[i]);
      else if (count % 2 == 0)
        {
          if (count == UMAC_POLY64_BLOCKS)
    	for (i = 0, key += 2; i < n; i++, key += 6)
    	  {
    	    uint64_t y = state[2*i+1];
    	    if (y >= UMAC_P64)
    	      y -= UMAC_P64;
    	    state[2*i] = 0;
    	    state[2*i+1] = 1;
    
    	    _umac_poly128 (key, state + 2*i, 0, y);
    	  }
          memcpy (prev, m, n * sizeof(*m));
        }
      else
        for (i = 0, key += 2; i < n; i++, key += 6)
          _umac_poly128 (key, state + 2*i, prev[i], m[i]);
    }
    
    void
    _umac_l2_final(const uint32_t *key, uint64_t *state, unsigned n,
    	       uint64_t count)
    {
      uint64_t *prev = state + 2*n;
      unsigned i;
    
      assert (count > 0);
      if (count == 1)
        for (i = 0; i < n; i++)
          {
    	*state++ = 0;
    	*state++ = *prev++;
          }
      else if (count <= UMAC_POLY64_BLOCKS)
        for (i = 0; i < n; i++)
          {
    	uint64_t y;
    	*state++ = 0;
    
    	y = *state;
    	if (y >= UMAC_P64)
    	  y -= UMAC_P64;
    	*state++ = y;
          }
      else
        {
          uint64_t pad = (uint64_t) 1 << 63;
          if (count % 2 == 1)
    	for (i = 0, key += 2; i < n; i++, key += 6)
    	  _umac_poly128 (key, state + 2*i, prev[i], pad);
          else
    	for (i = 0, key += 2; i < n; i++, key += 6)
    	  _umac_poly128 (key, state + 2*i, pad, 0);
    
          for (i = 0; i < n; i++, state += 2)
    	{
    	  uint64_t yh, yl;
    
    	  yh = state[0];
    	  yl = state[1];
    	  if (yh == UMAC_P128_HI && yl >= UMAC_P128_LO)
    	    {
    	      state[0] = 0;
    	      state[1] = yl -= UMAC_P128_LO;
    	    }
    	}
        }
    }