Total Lines | 7 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | interface KeyAgreement extends KeyEncryptionAlgorithm |
||
20 | { |
||
21 | /** |
||
22 | * Computes the agreement key. |
||
23 | */ |
||
24 | public function getAgreementKey(int $encryptionKeyLength, string $algorithm, JWK $recipientKey, ?JWK $senderKey, array $completeHeader = [], array &$additionalHeaderValues = []): string; |
||
25 | } |
||
26 |