Skip to content
Snippets Groups Projects
Select Git revision
  • c251c1fc8e6b796e47eada2b835540484c2e9cab
  • master default protected
  • hpke
  • ppc-chacha-4core
  • delete-internal-name-mangling
  • master-updates
  • ppc-gcm
  • ppc-chacha-2core
  • refactor-ecc-mod
  • ppc-chacha-core
  • use-mpn_cnd-functions
  • optimize-ecc-invert
  • default-m4-quote-char
  • power-asm-wip
  • test-fat
  • chacha-3core-neon
  • x86_64-salsa20-2core
  • salsa20-2core-neon
  • bcrypt
  • arm-salsa20-chacha-vsra
  • test-shlib-dir
  • 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
  • nettle_3.5rc1
  • 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
41 results

desUtil.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    • Niels Möller's avatar
      077695fe
      Constified. · 077695fe
      Niels Möller authored
      Rev: src/symmetric/desCode.h:1.4
      Rev: src/symmetric/desKerb.c:1.3
      Rev: src/symmetric/desTest.c:1.6
      Rev: src/symmetric/desUtil.c:1.3
      077695fe
      History
      Constified.
      Niels Möller authored
      Rev: src/symmetric/desCode.h:1.4
      Rev: src/symmetric/desKerb.c:1.3
      Rev: src/symmetric/desTest.c:1.6
      Rev: src/symmetric/desUtil.c:1.3
    .how_to_create_modules 1.14 KiB
    How to create Pike modules
    ==========================
    
    o You need a name for your module, for our purposes, let us assume you 
       want to create the module "modulen".
    
    o Create the dir src/modules/modulen
    
    o Copy the Makefile.in from src/modules/Gz and modify it.
      Set the macro OBJS to all objectfiles in your module.
      Set the macro MODULE_LDFLAGS to all needed -L<libdir> -R<libdir>
      options followed by all needed -l<lib> options.
      If you want your module to always be linked statically, modify
      @dynamic_module_makefile@ to @static_module_makefile@.
      The Makefile.in need not contain any dependencies.
    
    o You need a testsuite.in, even if it is just an empty one.
    
    o You need a configure.in
      Your configure.in should test for ALL features you need.
      Your configure.in should contain the line
    	sinclude(../module_configure.in)
      Do not trust the global configure tests to do things for you.
    
    o All C/C++ files should include "global.h" as the first included file.
    
    o When building the your module the first time you need to:
      1) run autoconf
      2) do 'make depend' from your build dir
      3) re-run configure from your build dir
      4) make (in your build dir)