You are here

public function Agent::getCryptMethods in DRD Agent 8.3

Same name and namespace in other branches
  1. 4.0.x src/Controller/Agent.php \Drupal\drd_agent\Controller\Agent::getCryptMethods()

Route callback to retrieve a list of available crypt methods.

Return value

\Symfony\Component\HttpFoundation\Response The response to DRD.

Throws

\Exception

1 string reference to 'Agent::getCryptMethods'
drd_agent.routing.yml in ./drd_agent.routing.yml
drd_agent.routing.yml

File

src/Controller/Agent.php, line 81

Class

Agent
Class Default.

Namespace

Drupal\drd_agent\Controller

Code

public function getCryptMethods() : Response {
  return $this
    ->deliver(base64_encode(json_encode(CryptBase::getMethods($this->container))));
}