You are here

public function KeyClient::encrypted in Lockr 7

Same name and namespace in other branches
  1. 7.2 vendor/lockr/lockr-client/src/KeyClient.php \Lockr\KeyClient::encrypted()

Gets and sets encrypted keys.

Parameters

string $encoded (optional) Data to decrypt keys.:

Return value

self The client for method chaining.

File

src/Lockr/KeyClient.php, line 38

Class

KeyClient

Namespace

Lockr

Code

public function encrypted($encoded = true) {
  $this->encoded = $encoded;
  return $this;
}