You are here

public static function KeyWrapperInterface::decrypt in Lockr 7.2

Same name and namespace in other branches
  1. 7.3 vendor/lockr/lockr/src/KeyWrapper/KeyWrapperInterface.php \Lockr\KeyWrapper\KeyWrapperInterface::decrypt()

Decrypt the given ciphertext using encoded.

Parameters

string $ciphertext:

string $encoded:

Return value

string|bool

4 methods override KeyWrapperInterface::decrypt()
LockrAes128CtrSha256KeyWrapper::decrypt in vendor/lockr/lockr-client/src/KeyWrapper/LockrAes128CtrSha256KeyWrapper.php
Decrypt the given ciphertext using encoded.
LockrAes256CbcSha256KeyWrapper::decrypt in vendor/lockr/lockr-client/src/KeyWrapper/LockrAes256CbcSha256KeyWrapper.php
Decrypt the given ciphertext using encoded.
LockrAesCbcKeyWrapper::decrypt in vendor/lockr/lockr-client/src/KeyWrapper/LockrAesCbcKeyWrapper.php
Decrypt the given ciphertext using encoded.
MultiKeyWrapper::decrypt in vendor/lockr/lockr-client/src/KeyWrapper/MultiKeyWrapper.php
Decrypt the given ciphertext using encoded.

File

vendor/lockr/lockr-client/src/KeyWrapper/KeyWrapperInterface.php, line 38

Class

KeyWrapperInterface

Namespace

Lockr\KeyWrapper

Code

public static function decrypt($ciphertext, $encoded);