Skip to content
Snippets Groups Projects
Select Git revision
  • 504dff42695fe60d43453af4de6deec6f7e0949c
  • master default protected
  • siv-mode
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • master-updates
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • x86_64-sha_ni-sha256
  • ecc-params-tweak
  • delete-old-aes
  • cmac-support
  • x86_64-sha_ni-sha1
  • gcm-ctr-opt
  • ctr-opt
  • skein
  • api-opaque-fix
  • curve448
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
  • converted-master-branch-to-git
  • nettle_2.4_release_20110903
  • nettle_2.3_release_20110902
41 results

aes-internal.h

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    • Niels Möller's avatar
      4fd20960
      * New name mangling, to reduce the risk of link collisions. All · 4fd20960
      Niels Möller authored
      functions (except memxor) now use a nettle_ or _nettle prefix when
      seen by the linker. For most functions, the header file that declares
      a function also use #define to provide a shorter more readable name
      without the prefix.
      
      Rev: src/nettle/aes-internal.h:1.9
      Rev: src/nettle/aes.h:1.6
      Rev: src/nettle/arcfour.h:1.4
      Rev: src/nettle/base16.h:1.2
      Rev: src/nettle/base64.h:1.12
      Rev: src/nettle/blowfish.h:1.8
      Rev: src/nettle/cast128.h:1.4
      Rev: src/nettle/cbc.h:1.4
      Rev: src/nettle/des.h:1.8
      Rev: src/nettle/dsa.h:1.7
      Rev: src/nettle/hmac.h:1.5
      Rev: src/nettle/knuth-lfib.h:1.2
      Rev: src/nettle/md5-compat.h:1.2
      Rev: src/nettle/md5.h:1.6
      Rev: src/nettle/pgp.h:1.2
      Rev: src/nettle/pkcs1.h:1.2
      Rev: src/nettle/rsa-compat.h:1.3
      Rev: src/nettle/rsa.h:1.22
      Rev: src/nettle/serpent.h:1.6
      Rev: src/nettle/sexp.h:1.15
      Rev: src/nettle/sha.h:1.3
      Rev: src/nettle/twofish.h:1.5
      Rev: src/nettle/yarrow.h:1.10
      4fd20960
      History
      * New name mangling, to reduce the risk of link collisions. All
      Niels Möller authored
      functions (except memxor) now use a nettle_ or _nettle prefix when
      seen by the linker. For most functions, the header file that declares
      a function also use #define to provide a shorter more readable name
      without the prefix.
      
      Rev: src/nettle/aes-internal.h:1.9
      Rev: src/nettle/aes.h:1.6
      Rev: src/nettle/arcfour.h:1.4
      Rev: src/nettle/base16.h:1.2
      Rev: src/nettle/base64.h:1.12
      Rev: src/nettle/blowfish.h:1.8
      Rev: src/nettle/cast128.h:1.4
      Rev: src/nettle/cbc.h:1.4
      Rev: src/nettle/des.h:1.8
      Rev: src/nettle/dsa.h:1.7
      Rev: src/nettle/hmac.h:1.5
      Rev: src/nettle/knuth-lfib.h:1.2
      Rev: src/nettle/md5-compat.h:1.2
      Rev: src/nettle/md5.h:1.6
      Rev: src/nettle/pgp.h:1.2
      Rev: src/nettle/pkcs1.h:1.2
      Rev: src/nettle/rsa-compat.h:1.3
      Rev: src/nettle/rsa.h:1.22
      Rev: src/nettle/serpent.h:1.6
      Rev: src/nettle/sexp.h:1.15
      Rev: src/nettle/sha.h:1.3
      Rev: src/nettle/twofish.h:1.5
      Rev: src/nettle/yarrow.h:1.10
    pike_memory.h 1.44 KiB
    /*\
    ||| This file a part of Pike, and is copyright by Fredrik Hubinette
    ||| Pike is distributed as GPL (General Public License)
    ||| See the files COPYING and DISCLAIMER for more information.
    \*/
    
    /*
     * $Id: pike_memory.h,v 1.4 1998/03/28 15:05:02 grubba Exp $
     */
    #ifndef MEMORY_H
    #define MEMORY_H
    
    #include "global.h"
    
    #define MEMSEARCH_LINKS 512
    
    struct link
    {
      struct link *next;
      INT32 key, offset;
    };
    
    enum methods {
      no_search,
      use_memchr,
      memchr_and_memcmp,
      hubbe_search
    };
    
    struct mem_searcher
    {
      enum methods method;
      char *needle;
      SIZE_T needlelen;
      unsigned INT32 hsize, max;
      struct link links[MEMSEARCH_LINKS];
      struct link *set[MEMSEARCH_LINKS];
    };
    
    /* Prototypes begin here */
    extern char *debug_xalloc(long);
    void swap(char *a, char *b, INT32 size);
    void reverse(char *memory, INT32 nitems, INT32 size);
    void reorder(char *memory, INT32 nitems, INT32 size,INT32 *order);
    unsigned INT32 hashmem(const unsigned char *a,INT32 len,INT32 mlen);
    unsigned INT32 hashstr(const unsigned char *str,INT32 maxn);
    void init_memsearch(struct mem_searcher *s,
    		    char *needle,
    		    SIZE_T needlelen,
    		    SIZE_T max_haystacklen);
    char *memory_search(struct mem_searcher *s,
    		    char *haystack,
    		    SIZE_T haystacklen);
    char *my_memmem(char *needle,
    		SIZE_T needlelen,
    		char *haystack,
    		SIZE_T haystacklen);
    void memfill(char *to,
    	     INT32 tolen,
    	     char *from,
    	     INT32 fromlen,
    	     INT32 offset);
    /* Prototypes end here */
    
    #endif