Skip to content
Snippets Groups Projects
Select Git revision
  • 48b9f6d968a00859de7388fda0bf648e35e7ab54
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

mapping.fig

Blame
    • Fredrik Hübinette (Hubbe)'s avatar
      c8a927db
      tutorial now in CVS · c8a927db
      Fredrik Hübinette (Hubbe) authored
      Rev: tutorial/array.fig:1.1
      Rev: tutorial/array.gif:1.1
      Rev: tutorial/function.fig:1.1
      Rev: tutorial/function.gif:1.1
      Rev: tutorial/inherit.fig:1.1
      Rev: tutorial/inherit.gif:1.1
      Rev: tutorial/mapping.fig:1.1
      Rev: tutorial/mapping.gif:1.1
      Rev: tutorial/multiset.fig:1.1
      Rev: tutorial/multiset.gif:1.1
      Rev: tutorial/object.fig:1.1
      Rev: tutorial/object.gif:1.1
      Rev: tutorial/pike.gif:1.1
      Rev: tutorial/program.fig:1.1
      Rev: tutorial/program.gif:1.1
      Rev: tutorial/tutorial.html:1.1
      c8a927db
      History
      tutorial now in CVS
      Fredrik Hübinette (Hubbe) authored
      Rev: tutorial/array.fig:1.1
      Rev: tutorial/array.gif:1.1
      Rev: tutorial/function.fig:1.1
      Rev: tutorial/function.gif:1.1
      Rev: tutorial/inherit.fig:1.1
      Rev: tutorial/inherit.gif:1.1
      Rev: tutorial/mapping.fig:1.1
      Rev: tutorial/mapping.gif:1.1
      Rev: tutorial/multiset.fig:1.1
      Rev: tutorial/multiset.gif:1.1
      Rev: tutorial/object.fig:1.1
      Rev: tutorial/object.gif:1.1
      Rev: tutorial/pike.gif:1.1
      Rev: tutorial/program.fig:1.1
      Rev: tutorial/program.gif:1.1
      Rev: tutorial/tutorial.html:1.1
    aes-set-encrypt-key.c 1.75 KiB
    /* aes-set-encrypt-key.c
    
       Key setup for the aes/rijndael block cipher.
    
       Copyright (C) 2000, 2001, 2002 Rafael R. Sevilla, Niels Möller
       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 "aes-internal.h"
    
    void
    aes_set_encrypt_key(struct aes_ctx *ctx,
    		    size_t keysize, const uint8_t *key)
    {
      unsigned nk, nr;
    
      assert(keysize >= AES_MIN_KEY_SIZE);
      assert(keysize <= AES_MAX_KEY_SIZE);
      
      /* Truncate keysizes to the valid key sizes provided by Rijndael */
      if (keysize == AES256_KEY_SIZE) {
        nk = 8;
        nr = _AES256_ROUNDS;
      } else if (keysize >= AES192_KEY_SIZE) {
        nk = 6;
        nr = _AES192_ROUNDS;
      } else { /* must be 16 or more */
        nk = 4;
        nr = _AES128_ROUNDS;
      }
    
      ctx->rounds = nr;
      _aes_set_key (nr, nk, ctx->keys, key);
    }