/contrib/bind9/lib/isc/iterated_hash.c

https://bitbucket.org/freebsd/freebsd-head/ · C · 48 lines · 24 code · 8 blank · 16 comment · 3 complexity · fb95bca4d0c69cb24988af3e38d24ab4 MD5 · raw file

  1. /*
  2. * Copyright (C) 2006, 2008, 2009 Internet Systems Consortium, Inc. ("ISC")
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  9. * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  10. * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  11. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  12. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  13. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  14. * PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. /* $Id: iterated_hash.c,v 1.6 2009/02/18 23:47:48 tbox Exp $ */
  17. #include "config.h"
  18. #include <stdio.h>
  19. #include <isc/sha1.h>
  20. #include <isc/iterated_hash.h>
  21. int
  22. isc_iterated_hash(unsigned char out[ISC_SHA1_DIGESTLENGTH],
  23. unsigned int hashalg, int iterations,
  24. const unsigned char *salt, int saltlength,
  25. const unsigned char *in, int inlength)
  26. {
  27. isc_sha1_t ctx;
  28. int n = 0;
  29. if (hashalg != 1)
  30. return (0);
  31. do {
  32. isc_sha1_init(&ctx);
  33. isc_sha1_update(&ctx, in, inlength);
  34. isc_sha1_update(&ctx, salt, saltlength);
  35. isc_sha1_final(&ctx, out);
  36. in = out;
  37. inlength = ISC_SHA1_DIGESTLENGTH;
  38. } while (n++ < iterations);
  39. return (ISC_SHA1_DIGESTLENGTH);
  40. }