crypt_gensalt.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Written by Solar Designer <solar at openwall.com> in 2000-2011.
  3. * No copyright is claimed, and the software is hereby placed in the public
  4. * domain. In case this attempt to disclaim copyright and place the software
  5. * in the public domain is deemed null and void, then the software is
  6. * Copyright (c) 2000-2011 Solar Designer and it is hereby released to the
  7. * general public under the following terms:
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted.
  11. *
  12. * There's ABSOLUTELY NO WARRANTY, express or implied.
  13. *
  14. * See crypt_blowfish.c for more information.
  15. */
  16. #ifndef _CRYPT_GENSALT_H
  17. #define _CRYPT_GENSALT_H
  18. extern unsigned char _crypt_itoa64[];
  19. extern char *_crypt_gensalt_traditional_rn(const char *prefix,
  20. unsigned long count,
  21. const char *input, int size, char *output, int output_size);
  22. extern char *_crypt_gensalt_extended_rn(const char *prefix,
  23. unsigned long count,
  24. const char *input, int size, char *output, int output_size);
  25. extern char *_crypt_gensalt_md5_rn(const char *prefix, unsigned long count,
  26. const char *input, int size, char *output, int output_size);
  27. #endif