19 lines
395 B
PHP
19 lines
395 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Jose\Component\Encryption\Algorithm\KeyEncryption;
|
|
|
|
use Jose\Component\Core\JWK;
|
|
use Jose\Component\Encryption\Algorithm\KeyEncryptionAlgorithm;
|
|
|
|
interface DirectEncryption extends KeyEncryptionAlgorithm
|
|
{
|
|
/**
|
|
* Returns the CEK.
|
|
*
|
|
* @param JWK $key The key used to get the CEK
|
|
*/
|
|
public function getCEK(JWK $key): string;
|
|
}
|