PKCS5_PBKDF2_HMAC.pod 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. =pod
  2. =head1 NAME
  3. PKCS5_PBKDF2_HMAC, PKCS5_PBKDF2_HMAC_SHA1 - password based derivation routines with salt and iteration count
  4. =head1 SYNOPSIS
  5. #include <openssl/evp.h>
  6. int PKCS5_PBKDF2_HMAC(const char *pass, int passlen,
  7. const unsigned char *salt, int saltlen, int iter,
  8. const EVP_MD *digest,
  9. int keylen, unsigned char *out);
  10. int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen,
  11. const unsigned char *salt, int saltlen, int iter,
  12. int keylen, unsigned char *out);
  13. =head1 DESCRIPTION
  14. PKCS5_PBKDF2_HMAC() derives a key from a password using a salt and iteration count
  15. as specified in RFC 2898.
  16. B<pass> is the password used in the derivation of length B<passlen>. B<pass>
  17. is an optional parameter and can be NULL. If B<passlen> is -1, then the
  18. function will calculate the length of B<pass> using strlen().
  19. B<salt> is the salt used in the derivation of length B<saltlen>. If the
  20. B<salt> is NULL, then B<saltlen> must be 0. The function will not
  21. attempt to calculate the length of the B<salt> because it is not assumed to
  22. be NULL terminated.
  23. B<iter> is the iteration count and its value should be greater than or
  24. equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
  25. B<iter> less than 1 is treated as a single iteration.
  26. B<digest> is the message digest function used in the derivation.
  27. PKCS5_PBKDF2_HMAC_SHA1() calls PKCS5_PBKDF2_HMAC() with EVP_sha1().
  28. The derived key will be written to B<out>. The size of the B<out> buffer
  29. is specified via B<keylen>.
  30. =head1 NOTES
  31. A typical application of this function is to derive keying material for an
  32. encryption algorithm from a password in the B<pass>, a salt in B<salt>,
  33. and an iteration count.
  34. Increasing the B<iter> parameter slows down the algorithm which makes it
  35. harder for an attacker to perform a brute force attack using a large number
  36. of candidate passwords.
  37. These functions make no assumption regarding the given password.
  38. It will simply be treated as a byte sequence.
  39. =head1 RETURN VALUES
  40. PKCS5_PBKDF2_HMAC() and PBKCS5_PBKDF2_HMAC_SHA1() return 1 on success or 0 on error.
  41. =head1 SEE ALSO
  42. L<evp(7)>, L<RAND_bytes(3)>,
  43. L<EVP_BytesToKey(3)>,
  44. L<passphrase-encoding(7)>
  45. =head1 COPYRIGHT
  46. Copyright 2014-2021 The OpenSSL Project Authors. All Rights Reserved.
  47. Licensed under the Apache License 2.0 (the "License"). You may not use
  48. this file except in compliance with the License. You can obtain a copy
  49. in the file LICENSE in the source distribution or at
  50. L<https://www.openssl.org/source/license.html>.
  51. =cut