Skip to content
Snippets Groups Projects

Deprecate generateSalt()

3 unresolved threads

Closes #3443198

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
13 14 */
14 15 abstract class PhpassHashedPasswordBase implements PasswordInterface {
15 16
17 use DeprecatedServicePropertyTrait;
18
19 /**
20 * The deprecated properties and services on this class.
21 */
22 protected array $deprecatedProperties = ['countLog2' => 'countLog2'];
  • 124 132 * A 12 character string containing the iteration count and a random salt.
    125 133 */
    126 134 protected function generateSalt() {
    135 @trigger_error('Calling ' . __METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3443277', E_USER_DEPRECATED);
  • 124 132 * A 12 character string containing the iteration count and a random salt.
    125 133 */
    • Suggested change
      Applied
      137 */
      137 * @deprecated in drupal:10.3.0 and is removed from drupal:11.0.0.
      138 * No replacement.
      139 *
      140 * @see https://www.drupal.org/node/3443277
      141 */
    • Please register or sign in to reply
  • Andrey Postnikov
  • added 1 commit

    • 3e0bd81c - Properly deprecate variable and method

    Compare with previous version

  • Andrey Postnikov added 4 commits

    added 4 commits

    Compare with previous version

  • added 1 commit

    • 4f244d3d - Properly deprecate variable and method

    Compare with previous version

  • added 1 commit

    • a6c498c7 - Properly deprecate variable and method

    Compare with previous version

  • added 1 commit

    • c865e73b - Properly deprecate variable and method

    Compare with previous version

  • Please register or sign in to reply
    Loading