You are here

public static function KeyWrapperInterface::decrypt in Lockr 7.3

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

Decrypt the given ciphertext.

Parameters

string $ciphertext:

string $wrapping_key:

Return value

string|bool

5 methods override KeyWrapperInterface::decrypt()
LockrAes128CtrSha256KeyWrapper::decrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes128CtrSha256KeyWrapper.php
Decrypt the given ciphertext.
LockrAes256CbcSha256KeyWrapper::decrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes256CbcSha256KeyWrapper.php
Decrypt the given ciphertext.
LockrAes256CbcSha256RawKeyWrapper::decrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes256CbcSha256RawKeyWrapper.php
Decrypt the given ciphertext.
LockrAesCbcKeyWrapper::decrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAesCbcKeyWrapper.php
Decrypt the given ciphertext.
MultiKeyWrapper::decrypt in vendor/lockr/lockr/src/KeyWrapper/MultiKeyWrapper.php
Decrypt the given ciphertext.

File

vendor/lockr/lockr/src/KeyWrapper/KeyWrapperInterface.php, line 39

Class

KeyWrapperInterface

Namespace

Lockr\KeyWrapper

Code

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