PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wilcity-mobile-app
/
vendor
/
rbdwllr
/
reallysimplejwt
/
src
<?php namespace ReallySimpleJWT; /** * Abstract Token class that contains some global features for the Token Builder * class and the Token Validator class * * @author Rob Waller <rdwaller1984@gmail.com> */ abstract class TokenAbstract { /** * The hash type for the signature hashing * * @var string */ private $hash = 'sha256'; /** * The JWT hash algorithm type for the Token Header * * @var string */ private $algorithm = 'HS256'; /** * Return the hash type for the signature hashing * * @return string */ public function getHash(): string { return $this->hash; } /** * Return the JWT hash algorithm type for the Token header * * @return string */ public function getAlgorithm(): string { return $this->algorithm; } }
[+]
..
[-] Token.php
[edit]
[-] TokenAbstract.php
[edit]
[-] TokenValidator.php
[edit]
[+]
Helper
[-] .src.php
[edit]
[-] TokenBuilder.php
[edit]
[+]
Exception