You are here

public function MCrypt::getCipherMethods in DRD Agent 8.3

Same name and namespace in other branches
  1. 4.0.x src/Crypt/Method/MCrypt.php \Drupal\drd_agent\Crypt\Method\MCrypt::getCipherMethods()

Get a list of available cipher methods.

Return value

array List of methods.

Overrides BaseMethodInterface::getCipherMethods

File

src/Crypt/Method/MCrypt.php, line 65

Class

MCrypt
Provides MCrypt encryption functionality.

Namespace

Drupal\drd_agent\Crypt\Method

Code

public function getCipherMethods() : array {
  return [
    'rijndael-128',
    'rijndael-192',
    'rijndael-256',
  ];
}