SigningProviderInterface
Table of Contents
Methods
- findSigningSecret() : SigningSecretInterface|null
- Finds a signing secret for a given name
- provideSigningSecret() : SigningSecretInterface
- Provides a signing secret independently of any name or identifier.
- revokeSigningSecret() : void
- Revokes a signing secret for a given name (providers without revocation functionality use an empty method body)
Methods
findSigningSecret()
Finds a signing secret for a given name
public
findSigningSecret(string $name) : SigningSecretInterface|null
Parameters
- $name : string
Return values
SigningSecretInterface|nullprovideSigningSecret()
Provides a signing secret independently of any name or identifier.
public
provideSigningSecret() : SigningSecretInterface
In case there is none, the corresponding provider has to create a new one.
Return values
SigningSecretInterfacerevokeSigningSecret()
Revokes a signing secret for a given name (providers without revocation functionality use an empty method body)
public
revokeSigningSecret(string $name) : void
Parameters
- $name : string