/home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Signer
NameSizeModeActions
Ecdsa/-0755rm
Hmac/-0755rm
Key/-0755rm
Rsa/-0755rm
BaseSigner.php19030644editdlrm
CannotSignPayload.php4060644editdlrm
Ecdsa.php15540644editdlrm
Hmac.php9530644editdlrm
InvalidKeyProvided.php5650644editdlrm
Key.php22810644editdlrm
Keychain.php9940644editdlrm
None.php3400644editdlrm
OpenSSL.php27400644editdlrm
Rsa.php4840644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Signer/Keychain.php (994B)
* @since 2.1.0 * * @deprecated Since we've removed OpenSSL from ECDSA there's no reason to use this class */ class Keychain { /** * Returns a private key from file path or content * * @param string $key * @param string $passphrase * * @return Key */ public function getPrivateKey($key, $passphrase = null) { return new Key($key, $passphrase); } /** * Returns a public key from file path or content * * @param string $certificate * * @return Key */ public function getPublicKey($certificate) { return new Key($certificate); } }