You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.6 KiB

  1. /* Copyright (c) 2014, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #ifndef OPENSSL_HEADER_HKDF_H
  15. #define OPENSSL_HEADER_HKDF_H
  16. #include <openssl/base.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /* Computes HKDF (as specified by RFC 5869) of initial keying material |secret|
  21. * with |salt| and |info| using |digest|, and outputs |out_len| bytes to
  22. * |out_key|. It returns one on success and zero on error.
  23. *
  24. * HKDF is an Extract-and-Expand algorithm. It does not do any key stretching,
  25. * and as such, is not suited to be used alone to generate a key from a
  26. * password. */
  27. OPENSSL_EXPORT int HKDF(uint8_t *out_key, size_t out_len, const EVP_MD *digest,
  28. const uint8_t *secret, size_t secret_len,
  29. const uint8_t *salt, size_t salt_len,
  30. const uint8_t *info, size_t info_len);
  31. #if defined(__cplusplus)
  32. } /* extern C */
  33. #endif
  34. #define HKDF_R_OUTPUT_TOO_LARGE 100
  35. #endif /* OPENSSL_HEADER_HKDF_H */