<?php
namespace Lucent\Account;
class Token
{
public static function new(int $length = 64): string
return bin2hex(random_bytes($length));
}