rfc:improve_hash_hkdf_parameter
Differences
This shows you the differences between two versions of the page.
rfc:improve_hash_hkdf_parameter [2017/03/24 20:55] – yohgaki | rfc:improve_hash_hkdf_parameter [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
* Version: 1.0 | * Version: 1.0 | ||
* Create Date: 2017-02-05 | * Create Date: 2017-02-05 | ||
- | * Discussion Start: 2017-02-13 | + | * Discussion Start: 2017-03-26 |
* Author: Yasuo Ohgaki < | * Author: Yasuo Ohgaki < | ||
- | * Status: | + | * Status: |
* First Published at: http:// | * First Published at: http:// | ||
Line 36: | Line 36: | ||
Example 4: | Example 4: | ||
<code php> | <code php> | ||
- | // $proto_version, | + | // $proto_version, |
$info = $proto_version . $algo . $user_id; | $info = $proto_version . $algo . $user_id; | ||
Line 52: | Line 52: | ||
</ | </ | ||
- | Newly introduced HKDF function has different signature | + | Newly introduced HKDF function |
===== Proposal ===== | ===== Proposal ===== | ||
Line 75: | Line 75: | ||
</ | </ | ||
* $salt: Required. Set empty string to use without salt. More precedence over $info because HKDF security depends on $salt or $ikm strength. | * $salt: Required. Set empty string to use without salt. More precedence over $info because HKDF security depends on $salt or $ikm strength. | ||
- | * $info: Required. Set empty string to use without | + | * $info: Required. Set empty string to use without |
* $length: Optional. Mostly needless unless users need key derivations for low level crypto operations. | * $length: Optional. Mostly needless unless users need key derivations for low level crypto operations. | ||
* $raw_output: | * $raw_output: | ||
Note: Only changed/ | Note: Only changed/ | ||
+ | |||
+ | |||
+ | === Short Rationale - security, parameter importance, hash_hmac() signature === | ||
Insecure usage is easily possible with current signature. | Insecure usage is easily possible with current signature. | ||
<code php> | <code php> | ||
- | $key = hash_hkdf(' | + | $key = hash_hkdf(' |
- | $key = hash_hkdf(' | + | $key = hash_hkdf(' |
- | $key = hash_hkdf(' | + | $key = hash_hkdf(' |
</ | </ | ||
Line 283: | Line 286: | ||
* When key(s) must be unique, either IKM or salt must be unique. | * When key(s) must be unique, either IKM or salt must be unique. | ||
- | Although it may seem IKM and salt is interchangeable, | + | Although it may seem IKM and salt is interchangeable, |
==== hash_hkdf() behavior and other hash functions ==== | ==== hash_hkdf() behavior and other hash functions ==== | ||
Line 662: | Line 665: | ||
===== Backward Incompatible Changes ===== | ===== Backward Incompatible Changes ===== | ||
- | None. hash_hkdf() | + | It is merged into PHP 7.1.2. |
===== Proposed PHP Version(s) ===== | ===== Proposed PHP Version(s) ===== | ||
- | Next PHP 7.x | + | Next PHP 7.x and 7.1.x |
===== RFC Impact ===== | ===== RFC Impact ===== | ||
- | None. | + | PHP 7.1.2/7.1.3 has hash_hkdf(). |
===== Open Issues ===== | ===== Open Issues ===== | ||
Line 678: | Line 681: | ||
===== Unaffected PHP Functionality ===== | ===== Unaffected PHP Functionality ===== | ||
- | Nothing is affected. | + | Other than hash_hkdf() |
===== Future Scope ===== | ===== Future Scope ===== | ||
Line 687: | Line 690: | ||
State whether this project requires a 2/3 | State whether this project requires a 2/3 | ||
+ | <doodle title=" | ||
+ | * Yes | ||
+ | * No | ||
+ | </ | ||
+ | Vote start: 2017-03-26 | ||
+ | Vote end: 2017-04-07 UTC 23:59:59 | ||
===== Patches and Tests ===== | ===== Patches and Tests ===== |
rfc/improve_hash_hkdf_parameter.1490388945.txt.gz · Last modified: 2025/04/03 13:08 (external edit)