openssl-kdf.pod.in 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-kdf - perform Key Derivation Function operations
  5. =head1 SYNOPSIS
  6. B<openssl kdf>
  7. [B<-help>]
  8. [B<-cipher>]
  9. [B<-digest>]
  10. [B<-mac>]
  11. [B<-kdfopt> I<nm>:I<v>]
  12. [B<-keylen> I<num>]
  13. [B<-out> I<filename>]
  14. [B<-binary>]
  15. {- $OpenSSL::safe::opt_provider_synopsis -}
  16. I<kdf_name>
  17. =head1 DESCRIPTION
  18. The key derivation functions generate a derived key from either a secret or
  19. password.
  20. =head1 OPTIONS
  21. =over 4
  22. =item B<-help>
  23. Print a usage message.
  24. =item B<-keylen> I<num>
  25. The output size of the derived key. This field is required.
  26. =item B<-out> I<filename>
  27. Filename to output to, or standard output by default.
  28. =item B<-binary>
  29. Output the derived key in binary form. Uses hexadecimal text format if not specified.
  30. =item B<-cipher> I<name>
  31. Specify the cipher to be used by the KDF.
  32. Not all KDFs require a cipher and it is an error to use this option in such
  33. cases.
  34. =item B<-digest> I<name>
  35. Specify the digest to be used by the KDF.
  36. Not all KDFs require a digest and it is an error to use this option in such
  37. cases.
  38. To see the list of supported digests, use C<openssl list -digest-commands>.
  39. =item B<-mac> I<name>
  40. Specify the MAC to be used by the KDF.
  41. Not all KDFs require a MAC and it is an error to use this option in such
  42. cases.
  43. =item B<-kdfopt> I<nm>:I<v>
  44. Passes options to the KDF algorithm.
  45. A comprehensive list of parameters can be found in the EVP_KDF_CTX
  46. implementation documentation.
  47. Common parameter names used by EVP_KDF_CTX_set_params() are:
  48. =over 4
  49. =item B<key:>I<string>
  50. Specifies the secret key as an alphanumeric string (use if the key contains
  51. printable characters only).
  52. The string length must conform to any restrictions of the KDF algorithm.
  53. A key must be specified for most KDF algorithms.
  54. =item B<hexkey:>I<string>
  55. Specifies the secret key in hexadecimal form (two hex digits per byte).
  56. The key length must conform to any restrictions of the KDF algorithm.
  57. A key must be specified for most KDF algorithms.
  58. =item B<pass:>I<string>
  59. Specifies the password as an alphanumeric string (use if the password contains
  60. printable characters only).
  61. The password must be specified for PBKDF2 and scrypt.
  62. =item B<hexpass:>I<string>
  63. Specifies the password in hexadecimal form (two hex digits per byte).
  64. The password must be specified for PBKDF2 and scrypt.
  65. =item B<digest:>I<string>
  66. This option is identical to the B<-digest> option.
  67. =item B<cipher:>I<string>
  68. This option is identical to the B<-cipher> option.
  69. =item B<mac:>I<string>
  70. This option is identical to the B<-mac> option.
  71. =back
  72. {- $OpenSSL::safe::opt_provider_item -}
  73. =item I<kdf_name>
  74. Specifies the name of a supported KDF algorithm which will be used.
  75. The supported algorithms names include TLS1-PRF, HKDF, SSKDF, PBKDF2,
  76. SSHKDF, X942KDF-ASN1, X942KDF-CONCAT, X963KDF and SCRYPT.
  77. =back
  78. =head1 EXAMPLES
  79. Use TLS1-PRF to create a hex-encoded derived key from a secret key and seed:
  80. openssl kdf -keylen 16 -kdfopt digest:SHA2-256 -kdfopt key:secret \
  81. -kdfopt seed:seed TLS1-PRF
  82. Use HKDF to create a hex-encoded derived key from a secret key, salt and info:
  83. openssl kdf -keylen 10 -kdfopt digest:SHA2-256 -kdfopt key:secret \
  84. -kdfopt salt:salt -kdfopt info:label HKDF
  85. Use SSKDF with KMAC to create a hex-encoded derived key from a secret key, salt and info:
  86. openssl kdf -keylen 64 -kdfopt mac:KMAC-128 -kdfopt maclen:20 \
  87. -kdfopt hexkey:b74a149a161545 -kdfopt hexinfo:348a37a2 \
  88. -kdfopt hexsalt:3638271ccd68a2 SSKDF
  89. Use SSKDF with HMAC to create a hex-encoded derived key from a secret key, salt and info:
  90. openssl kdf -keylen 16 -kdfopt mac:HMAC -kdfopt digest:SHA2-256 \
  91. -kdfopt hexkey:b74a149a -kdfopt hexinfo:348a37a2 \
  92. -kdfopt hexsalt:3638271c SSKDF
  93. Use SSKDF with Hash to create a hex-encoded derived key from a secret key, salt and info:
  94. openssl kdf -keylen 14 -kdfopt digest:SHA2-256 \
  95. -kdfopt hexkey:6dbdc23f045488 \
  96. -kdfopt hexinfo:a1b2c3d4 SSKDF
  97. Use SSHKDF to create a hex-encoded derived key from a secret key, hash and session_id:
  98. openssl kdf -keylen 16 -kdfopt digest:SHA2-256 \
  99. -kdfopt hexkey:0102030405 \
  100. -kdfopt hexxcghash:06090A \
  101. -kdfopt hexsession_id:01020304 \
  102. -kdfopt type:A SSHKDF
  103. Use PBKDF2 to create a hex-encoded derived key from a password and salt:
  104. openssl kdf -keylen 32 -kdfopt digest:SHA256 -kdfopt pass:password \
  105. -kdfopt salt:salt -kdfopt iter:2 PBKDF2
  106. Use scrypt to create a hex-encoded derived key from a password and salt:
  107. openssl kdf -keylen 64 -kdfopt pass:password -kdfopt salt:NaCl \
  108. -kdfopt n:1024 -kdfopt r:8 -kdfopt p:16 \
  109. -kdfopt maxmem_bytes:10485760 SCRYPT
  110. =head1 NOTES
  111. The KDF mechanisms that are available will depend on the options
  112. used when building OpenSSL.
  113. =head1 SEE ALSO
  114. L<openssl(1)>,
  115. L<openssl-pkeyutl(1)>,
  116. L<EVP_KDF(3)>,
  117. L<EVP_KDF-SCRYPT(7)>,
  118. L<EVP_KDF-TLS1_PRF(7)>,
  119. L<EVP_KDF-PBKDF2(7)>,
  120. L<EVP_KDF-HKDF(7)>,
  121. L<EVP_KDF-SS(7)>,
  122. L<EVP_KDF-SSHKDF(7)>,
  123. L<EVP_KDF-X942-ASN1(7)>,
  124. L<EVP_KDF-X942-CONCAT(7)>,
  125. L<EVP_KDF-X963(7)>
  126. =head1 HISTORY
  127. Added in OpenSSL 3.0
  128. =head1 COPYRIGHT
  129. Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
  130. Licensed under the Apache License 2.0 (the "License"). You may not use
  131. this file except in compliance with the License. You can obtain a copy
  132. in the file LICENSE in the source distribution or at
  133. L<https://www.openssl.org/source/license.html>.
  134. =cut