Joomla CMS
4.2.2
Documentation des API du CMS Joomla en version 4.2.2
|
Fonctions membres publiques | |
allowedKeyTypes () | |
verify (JWK $key, string $input, string $signature) | |
hash (JWK $key, string $input) | |
Fonctions membres publiques hérités de Algorithm | |
name () | |
Fonctions membres protégées | |
getKey (JWK $key) | |
getHashAlgorithm () | |
allowedKeyTypes | ( | ) |
Returns the key types suitable for this algorithm (e.g. "oct", "RSA"...).
Implémente Algorithm.
Référencé par HMAC\getKey().
|
abstractprotected |
Référencé par HMAC\hash().
|
protected |
InvalidArgumentException | if the key is invalid |
Références $key, HMAC\allowedKeyTypes(), Base64Url\decode(), et JWK\has().
Référencé par HMAC\hash().
hash | ( | JWK | $key, |
string | $input | ||
) |
Sign the input.
JWK | $key | The private key used to hash the data |
string | $input | The input |
Implémente MacAlgorithm.
Références HMAC\getHashAlgorithm(), et HMAC\getKey().
Référencé par HMAC\verify().
verify | ( | JWK | $key, |
string | $input, | ||
string | $signature | ||
) |
Verify the signature of data.
JWK | $key | The private key used to hash the data |
string | $input | The input |
string | $signature | The signature to verify |
Implémente MacAlgorithm.
Références $input, et HMAC\hash().