Joomla CMS
4.2.2
Documentation des API du CMS Joomla en version 4.2.2
|
Fonctions membres publiques | |
allowedKeyTypes () | |
sign (JWK $key, string $input) | |
verify (JWK $key, string $input, string $signature) | |
name () | |
Fonctions membres privées | |
checkKey (JWK $key) | |
allowedKeyTypes | ( | ) |
Returns the key types suitable for this algorithm (e.g. "oct", "RSA"...).
Implémente Algorithm.
Référencé par None\checkKey().
|
private |
InvalidArgumentException | if the key type is invalid |
Références $key, et None\allowedKeyTypes().
Référencé par None\sign().
name | ( | ) |
Returns the name of the algorithm.
Implémente Algorithm.
sign | ( | JWK | $key, |
string | $input | ||
) |
Sign the input.
JWK | $key | The private key used to sign the data |
string | $input | The input |
Implémente SignatureAlgorithm.
Références None\checkKey().
verify | ( | JWK | $key, |
string | $input, | ||
string | $signature | ||
) |
Verify the signature of data.
JWK | $key | The private key used to sign the data |
string | $input | The input |
string | $signature | The signature to verify |
Implémente SignatureAlgorithm.