Skip to content
Snippets Groups Projects
  1. Mar 29, 2010
  2. Mar 28, 2010
  3. Mar 27, 2010
  4. Mar 26, 2010
  5. Mar 25, 2010
  6. Mar 24, 2010
    • Niels Möller's avatar
      * sha512.c: (sha512_digest): Simplified handling of any final · a43c6468
      Niels Möller authored
      partial word of the digest.
      
      Rev: nettle/ChangeLog:1.58
      Rev: nettle/sha512.c:1.3
      a43c6468
    • Niels Möller's avatar
      * sha512.c: Reorganized to use _nettle_sha512_compress. · d35e6f95
      Niels Möller authored
      * sha512-compress.c (_nettle_sha512_compress): Compression
      function extracted from sha512.c to a new file.
      
      * Makefile.in (nettle_SOURCES): Added sha256-compress.c and
      sha512-compress.c.
      
      Rev: nettle/ChangeLog:1.57
      Rev: nettle/Makefile.in:1.18
      Rev: nettle/sha.h:1.4
      Rev: nettle/sha512-compress.c:1.1
      Rev: nettle/sha512.c:1.2
      d35e6f95
    • Niels Möller's avatar
      * Makefile.in (nettle_SOURCES): Added sha256-compress.c. · 343b4bad
      Niels Möller authored
      * sha256.c: Reorganized to use _nettle_sha256_compress.
      
      * sha256-compress.c (_nettle_sha256_compress): Compression
      function extracted from sha256.c to a new file.
      
      Rev: nettle/ChangeLog:1.56
      Rev: nettle/Makefile.in:1.17
      Rev: nettle/sha.h:1.3
      Rev: nettle/sha256-compress.c:1.1
      Rev: nettle/sha256.c:1.4
      343b4bad
    • Niels Möller's avatar
      *** empty log message *** · 97aca948
      Niels Möller authored
      Rev: nettle/ChangeLog:1.55
      97aca948
    • Niels Möller's avatar
      Interface change, let all rsa signature functions have a return value. · c72c16b7
      Niels Möller authored
      Rev: nettle/ChangeLog:1.54
      Rev: nettle/NEWS:1.4
      Rev: nettle/examples/rsa-sign.c:1.2
      Rev: nettle/pgp-encode.c:1.3
      Rev: nettle/pkcs1-rsa-md5.c:1.3
      Rev: nettle/pkcs1-rsa-sha1.c:1.3
      Rev: nettle/pkcs1-rsa-sha256.c:1.3
      Rev: nettle/pkcs1-rsa-sha512.c:1.2
      Rev: nettle/pkcs1.c:1.3
      Rev: nettle/pkcs1.h:1.3
      Rev: nettle/rsa-compat.c:1.3
      Rev: nettle/rsa-md5-sign.c:1.3
      Rev: nettle/rsa-md5-verify.c:1.3
      Rev: nettle/rsa-sha1-sign.c:1.3
      Rev: nettle/rsa-sha1-verify.c:1.3
      Rev: nettle/rsa-sha256-sign.c:1.3
      Rev: nettle/rsa-sha256-verify.c:1.3
      Rev: nettle/rsa-sha512-sign.c:1.2
      Rev: nettle/rsa-sha512-verify.c:1.2
      Rev: nettle/rsa.h:1.4
      Rev: nettle/testsuite/cxx-test.cxx:1.3
      Rev: nettle/testsuite/pkcs1-test.c:1.3
      Rev: nettle/testsuite/testutils.c:1.5
      c72c16b7
  7. Mar 23, 2010
    • Niels Möller's avatar
      *** empty log message *** · 7ccb9c4a
      Niels Möller authored
      Rev: nettle/ChangeLog:1.53
      7ccb9c4a
    • Niels Möller's avatar
      * Makefile.in (hogweed_SOURCES): Added pkcs1-rsa-sha512.c, · 3eebb3fd
      Niels Möller authored
      rsa-sha512-sign.c and rsa-sha512-verify.c.
      
      * rsa.h: Added prototypes for sha512-related functions.
      (RSA_MINIMUM_N_OCTETS, RSA_MINIMUM_N_BITS): Increased.
      * pkcs1.h: Added prototypes for sha512-related functions.
      
      * rsa-sha512-verify.c: New file.
      * rsa-sha512-sign.c: New file.
      * pkcs1-rsa-sha512.c: New file.
      
      Rev: nettle/ChangeLog:1.52
      Rev: nettle/Makefile.in:1.16
      Rev: nettle/pkcs1-rsa-sha512.c:1.1
      Rev: nettle/pkcs1.h:1.2
      Rev: nettle/rsa-sha512-sign.c:1.1
      Rev: nettle/rsa-sha512-verify.c:1.1
      Rev: nettle/rsa.h:1.3
      3eebb3fd
  8. Mar 22, 2010
  9. Mar 06, 2010
  10. Jan 20, 2010
  11. Jan 13, 2010
    • Niels Möller's avatar
      * Makefile.in ($(LIBHOGWEED_FORLINK)): Depend on · fc0ca95a
      Niels Möller authored
      $(LIBNETTLE_FORLINK).
      
      * configure.ac (LIBHOGWEED_LIBS): Added -lnettle -lgmp for the
      default case. Follows debian, and also makes dlopen of
      libhogweed.so work, without having to use RTLD_GLOBAL.
      (LIBHOGWEED_LINK): Added -L., to find our libnettle.so.
      
      Rev: nettle/ChangeLog:1.47
      Rev: nettle/Makefile.in:1.12
      Rev: nettle/configure.ac:1.12
      fc0ca95a
  12. Oct 21, 2009
  13. Oct 19, 2009
    • Niels Möller's avatar
      * tools/pkcs1-conv.c: Updated for dsa/der interface change. · e218daf9
      Niels Möller authored
      * der2dsa.c (dsa_public_key_from_der_iterators): Split into two
      new functions...
      (dsa_params_from_der_iterator): New function.
      (dsa_public_key_from_der_iterator): New function.
      (dsa_openssl_private_key_from_der_iterator): Renamed, was
      dsa_private_key_from_der_iterator.
      (dsa_openssl_private_key_from_der): Likewise.
      * dsa.h: Corresponding changees to prototypes and #defines.
      
      Rev: nettle/ChangeLog:1.45
      Rev: nettle/der2dsa.c:1.3
      Rev: nettle/dsa.h:1.3
      Rev: nettle/tools/pkcs1-conv.c:1.3
      e218daf9
  14. Oct 12, 2009
  15. Oct 11, 2009
  16. Sep 20, 2009
  17. Aug 25, 2009
  18. Jun 08, 2009
  19. Jun 04, 2009
  20. May 19, 2009
  21. May 11, 2009
  22. Mar 06, 2009
  23. Feb 10, 2009
    • Niels Möller's avatar
      * testsuite/sexp-conv-test: Updated testcases for improved · 3eca0559
      Niels Möller authored
      handling of comments.
      
      * tools/sexp-conv.c (sexp_convert_item): Use sexp_put_soft_newline
      to terminate comments, and modify indentation for the case that a
      list starts with a comment.
      
      * tools/output.c (sexp_output_init): Initialize soft_newline.
      (sexp_put_raw_char): Clear soft_newline.
      (sexp_put_newline): Check and reset soft_newline.
      (sexp_put_soft_newline): New function.
      
      * tools/output.h (struct sexp_output): Removed union with single
      element, and updated all users. New attribute soft_newline.
      
      Rev: nettle/ChangeLog:1.31
      Rev: nettle/testsuite/sexp-conv-test:1.3
      Rev: nettle/tools/output.c:1.3
      Rev: nettle/tools/output.h:1.3
      Rev: nettle/tools/sexp-conv.c:1.4
      3eca0559
  24. Dec 22, 2008
Loading