Skip to content
Snippets Groups Projects
Select Git revision
  • 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
40 results

nettle

  • Clone with SSH
  • Clone with HTTPS
  • Forked from Nettle / nettle
    1727 commits behind the upstream repository.
    user avatar
    Nikos Mavrogiannopoulos authored
    7ee0230d
    History
    Name Last commit Last update
    arm
    examples
    misc
    sparc32
    sparc64
    testsuite
    tools
    x86
    x86_64
    .bootstrap
    .c-style
    .gitattributes
    .gitignore
    AUTHORS
    COPYING
    COPYING.LIB
    ChangeLog
    INSTALL
    Makefile.in
    NEWS
    README
    TODO
    aclocal.m4
    aes-decrypt-internal.c
    aes-decrypt.c
    aes-encrypt-internal.c
    aes-encrypt-table.c
    aes-encrypt.c
    aes-internal.h
    aes-invert-internal.c
    aes-set-decrypt-key.c
    aes-set-encrypt-key.c
    aes-set-key-internal.c
    aes.h
    aes128-meta.c
    aes128-set-decrypt-key.c
    aes128-set-encrypt-key.c
    aes192-meta.c
    aes192-set-decrypt-key.c
    aes192-set-encrypt-key.c
    aes256-meta.c
    aes256-set-decrypt-key.c
    aes256-set-encrypt-key.c
    aesdata.c
    arcfour-crypt.c
    arcfour.c
    arcfour.h
    arctwo-meta.c
    arctwo.c
    arctwo.h
    asm.m4
    asn1.h
    base16-decode.c
    base16-encode.c
    base16-meta.c
    base16.h
    base64-decode.c
    base64-encode.c
    base64-meta.c
    base64.h
    bignum-next-prime.c
    bignum-random-prime.c
    bignum-random.c
    bignum.c
    bignum.h
    blowfish.c
    blowfish.h
    buffer-init.c
    buffer.c
    buffer.h
    camellia-absorb.c
    camellia-crypt-internal.c
    camellia-internal.h
    camellia-invert-key.c
    camellia-table.c
    camellia.h
    camellia128-crypt.c
    camellia128-meta.c
    camellia128-set-decrypt-key.c
    camellia128-set-encrypt-key.c
    camellia192-meta.c
    camellia256-crypt.c
    camellia256-meta.c
    camellia256-set-decrypt-key.c
    camellia256-set-encrypt-key.c
    cast128-meta.c
    cast128.c
    cast128.h
    cast128_sboxes.h
    cbc.c
    cbc.h
    ccm-aes128.c
    ccm-aes192.c
    ccm-aes256.c
    ccm.c
    ccm.h
    chacha-core-internal.c
    chacha-crypt.c
    chacha-poly1305-meta.c
    chacha-poly1305.c
    What is Nettle? A quote from the introduction in the Nettle Manual:
    
      Nettle is a cryptographic library that is designed to fit easily in more
      or less any context: In crypto toolkits for object-oriented languages
      (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in
      kernel space. In most contexts, you need more than the basic
      cryptographic algorithms, you also need some way to keep track of available
      algorithms, their properties and variants. You often have some algorithm
      selection process, often dictated by a protocol you want to implement.
      
      And as the requirements of applications differ in subtle and not so
      subtle ways, an API that fits one application well can be a pain to use
      in a different context. And that is why there are so many different
      cryptographic libraries around.
      
      Nettle tries to avoid this problem by doing one thing, the low-level
      crypto stuff, and providing a simple but general interface to it.
      In particular, Nettle doesn't do algorithm selection. It doesn't do
      memory allocation. It doesn't do any I/O.
      
      The idea is that one can build several application and context specific
      interfaces on top of Nettle, and share the code, test cases, benchmarks,
      documentation, etc. Examples are the Nettle module for the Pike
      language, and LSH, which both use an object-oriented abstraction on top
      of the library.
    
    Nettle is free software; you can redistribute it and/or modify it
    under the terms of the GNU Lesser General Public License as published
    by the Free Software Foundation. See the file COPYING.LIB for details.
    
    If you have downloaded a Nettle release, build it with the usual
    ./configure && make && make check && make install (see the INSTALL
    file for further instructions).
    
    You can also get Nettle from git, see
    http://www.lysator.liu.se/~nisse/nettle/ for current instructions. In
    particular, you need to run the ./.bootstrap script after checkout and
    before running ./configure.
    
    Read the manual. Mail me if you have any questions or suggestions.
    
    You may want to subscribe to the nettle-bugs mailing list. See
    <URL: http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs>.
    
    
    Happy hacking,
    /Niels Möller <nisse@lysator.liu.se>