cp_hash_password_options()

Set password hashing options.


Description

For use in function wp_check_password in wp-includes/pluggable.php


Return

(array)


Source

File: wp-includes/user.php

function cp_hash_password_options() {
	return apply_filters(
		'cp_hash_password_options',
		array(
			'cost' => 12,
		)
	);
}

Changelog

Changelog
Version Description
CP-2.2.0 Introduced. CP-2.2.0