You appear to be a bot. Output may be restricted
Description
Generate a cryptographically strong unique ID for the session token.
Usage
$string = WP_Session::generate_id();
Parameters
Returns
string
Source
File name: easy-digital-downloads/includes/libraries/class-wp-session.php
Lines:
1 to 6 of 6
protected function generate_id() { require_once( ABSPATH . 'wp-includes/class-phpass.php'); $hasher = new PasswordHash( 8, false ); return md5( $hasher->get_random_bytes( 32 ) ); }