You are here

public static function KeyWrapperInterface::reencrypt 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::reencrypt()

Encrypt the given plaintext reusing state.

Parameters

string $plaintext:

string $wrapping_key:

Return value

array

5 methods override KeyWrapperInterface::reencrypt()
LockrAes128CtrSha256KeyWrapper::reencrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes128CtrSha256KeyWrapper.php
Encrypt the given plaintext reusing state.
LockrAes256CbcSha256KeyWrapper::reencrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes256CbcSha256KeyWrapper.php
Encrypt the given plaintext reusing state.
LockrAes256CbcSha256RawKeyWrapper::reencrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAes256CbcSha256RawKeyWrapper.php
Encrypt the given plaintext reusing state.
LockrAesCbcKeyWrapper::reencrypt in vendor/lockr/lockr/src/KeyWrapper/LockrAesCbcKeyWrapper.php
Encrypt the given plaintext reusing state.
MultiKeyWrapper::reencrypt in vendor/lockr/lockr/src/KeyWrapper/MultiKeyWrapper.php
Encrypt the given plaintext reusing state.

File

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

Class

KeyWrapperInterface

Namespace

Lockr\KeyWrapper

Code

public static function reencrypt($plaintext, $wrapping_key);