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) | |
sign (JWK $key, string $input) | |
Fonctions membres publiques hérités de Algorithm | |
name () | |
Fonctions membres protégées | |
getAlgorithm () | |
getSignatureMethod () | |
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 RSA\checkKey().
|
private |
InvalidArgumentException | if the key type is not allowed |
InvalidArgumentException | if the key is invalid |
Références $key, et RSA\allowedKeyTypes().
Référencé par RSA\sign(), et RSA\verify().
|
abstractprotected |
Référencé par RSA\sign(), et RSA\verify().
|
abstractprotected |
Référencé par RSA\sign(), et RSA\verify().
sign | ( | JWK | $key, |
string | $input | ||
) |
InvalidArgumentException | if the key is not private |
Implémente SignatureAlgorithm.
Références $input, $key, RSA\checkKey(), RSAKey\createFromJWK(), RSA\getAlgorithm(), et RSA\getSignatureMethod().
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.
Références $input, $key, RSA\checkKey(), RSAKey\createFromJWK(), RSA\getAlgorithm(), et RSA\getSignatureMethod().