Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • rsa-crt-hardening
  • chacha96
  • fat-library
  • versioned-symbols
  • curve25519
  • dsa-reorg
  • aead-api
  • set_key-changes
  • poly1305
  • aes-reorg
  • nettle-2.7-fixes
  • size_t-changes
  • ecc-support
  • experimental-20050201
  • lsh-1.4.2
  • 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
  • nettle_2.2_release_20110711
  • nettle_2.1_release_20100725
  • camellia_32bit_20100720
  • nettle_2.0_release_20090608
  • nettle_1.15_release_20061128
  • after_experimental_merge_20060516
  • head_before_experimental_merge_20060516
36 results

nettle

  • Clone with SSH
  • Clone with HTTPS
  • Forked from Nettle / nettle
    This fork has diverged from the upstream repository.
    Name Last commit Last update
    arm
    examples
    misc
    sparc32
    sparc64
    testsuite
    tools
    x86
    x86_64
    .bootstrap
    .c-style
    .gitattributes
    .gitignore
    .gitlab-ci.yml
    AUTHORS
    COPYING.LESSERv3
    COPYINGv2
    COPYINGv3
    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
    base64url-decode.c
    base64url-encode.c
    base64url-meta.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
    What is GNU 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.
    
    GNU Nettle is free software; you can redistribute it and/or modify it
    under the terms contained in the files COPYING* (see the manual for
    information on how these licenses apply).
    
    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>