null, 'hex' => null, ]; /** * Decide on the best acceptable hash algorithm we have available for hash() * @return string A hash algorithm */ public static function hashAlgo() { if ( self::$algo !== null ) { return self::$algo; } $algos = hash_hmac_algos(); $preference = [ 'whirlpool', 'sha256' ]; foreach ( $preference as $algorithm ) { if ( in_array( $algorithm, $algos, true ) ) { self::$algo = $algorithm; return self::$algo; } } throw new DomainException( 'Could not find an acceptable hashing function.' ); } /** * Return the byte-length output of the hash algorithm we are * using in self::hash and self::hmac. * * @param bool $raw True to return the length for binary data, false to * return for hex-encoded * @return int Number of bytes the hash outputs */ public static function hashLength( $raw = true ) { $key = $raw ? 'binary' : 'hex'; if ( self::$hashLength[$key] === null ) { self::$hashLength[$key] = strlen( self::hash( '', $raw ) ); } // @phan-suppress-next-line PhanTypeMismatchReturnNullable False positive return self::$hashLength[$key]; } /** * Generate a cryptographic hash value (message digest) for a string, * making use of the best hash algorithm that we have available. * * @param string $data * @param bool $raw True to return binary data, false to return it hex-encoded * @return string A hash of the data */ public static function hash( $data, $raw = true ) { return hash( self::hashAlgo(), $data, $raw ); } /** * Generate a keyed cryptographic hash value (HMAC) for a string, * making use of the best hash algorithm that we have available. * * @param string $data * @param string $key * @param bool $raw True to return binary data, false to return it hex-encoded * @return string An HMAC hash of the data + key */ public static function hmac( $data, $key, $raw = true ) { if ( !is_string( $key ) ) { // hash_hmac tolerates non-string (would return null with warning) throw new InvalidArgumentException( 'Invalid key type: ' . gettype( $key ) ); } return hash_hmac( self::hashAlgo(), $data, $key, $raw ); } }