public static function EnvironmentVariablesKeyProvider::obscureKeyValue in Apigee Edge 8
Obscures a key value.
Parameters
string $key_value: The key value to obscure.
array $options: Options to use when obscuring the value.
Return value
string The obscured key value.
Overrides KeyProviderBase::obscureKeyValue
File
- src/
Plugin/ KeyProvider/ EnvironmentVariablesKeyProvider.php, line 79
Class
- EnvironmentVariablesKeyProvider
- Stores Apigee Edge authentication credentials in environment variables.
Namespace
Drupal\apigee_edge\Plugin\KeyProviderCode
public static function obscureKeyValue($key_value, array $options = []) {
return $key_value;
}