Made message signing in Cryptography use SHA512 as the message content for... #1
1 changed files with 19 additions and 1 deletions
|
@ -4,7 +4,8 @@ namespace Socialbox\Classes;
|
||||||
|
|
||||||
class Validator
|
class Validator
|
||||||
{
|
{
|
||||||
private const PEER_ADDRESS_PATTERN = "/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/";
|
private const string PEER_ADDRESS_PATTERN = "/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/";
|
||||||
|
private const string USERNAME_PATTERN = "/^[a-zA-Z0-9_]+$/";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validates a peer address
|
* Validates a peer address
|
||||||
|
@ -16,4 +17,21 @@ class Validator
|
||||||
{
|
{
|
||||||
return preg_match(self::PEER_ADDRESS_PATTERN, $address) === 1;
|
return preg_match(self::PEER_ADDRESS_PATTERN, $address) === 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates a username
|
||||||
|
*
|
||||||
|
* @param string $username The username to validate.
|
||||||
|
* @return bool True if the username is valid, false otherwise.
|
||||||
|
*/
|
||||||
|
public static function validateUsername(string $username): bool
|
||||||
|
{
|
||||||
|
if(strlen($username) < 3 || strlen($username) > 255)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return preg_match(self::USERNAME_PATTERN, $username) === 1;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue