PHP Interface Jose\Algorithm\KeyEncryption\KeyWrappingInterface

Inheritance: extends Jose\Algorithm\KeyEncryptionAlgorithmInterface
Datei anzeigen Open project: spomky-labs/jose Interface Usage Examples

Public Methods

Method Description
unwrapKey ( Jose\Object\JWKInterface $key, string $encrypted_cek, array $complete_headers ) : string Decrypt de CEK.
wrapKey ( Jose\Object\JWKInterface $key, string $cek, array $complete_headers, array &$additional_headers ) : string Encrypt the CEK.

Method Details

unwrapKey() public method

Decrypt de CEK.
public unwrapKey ( Jose\Object\JWKInterface $key, string $encrypted_cek, array $complete_headers ) : string
$key Jose\Object\JWKInterface The key used to wrap the CEK
$encrypted_cek string The CEK to decrypt
$complete_headers array The complete header of the JWT
return string The decrypted CEK

wrapKey() public method

Encrypt the CEK.
public wrapKey ( Jose\Object\JWKInterface $key, string $cek, array $complete_headers, array &$additional_headers ) : string
$key Jose\Object\JWKInterface The key used to wrap the CEK
$cek string The CEK to encrypt
$complete_headers array The complete header of the JWT
$additional_headers array The complete header of the JWT
return string The encrypted CEK