cleaned up composer
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user