Inheritance: extends Jose\Algorithm\KeyEncryptionAlgorithmInterface
Beispiel #1
0
 /**
  * @param array                                              $complete_headers
  * @param string                                             $cek
  * @param \Jose\Algorithm\KeyEncryption\KeyWrappingInterface $key_encryption_algorithm
  * @param \Jose\Object\JWKInterface                          $recipient_key
  * @param array                                              $additional_headers
  *
  * @return string
  */
 private function getEncryptedKeyFromKeyWrappingAlgorithm(array $complete_headers, $cek, Algorithm\KeyEncryption\KeyWrappingInterface $key_encryption_algorithm, Object\JWKInterface $recipient_key, &$additional_headers)
 {
     return $key_encryption_algorithm->wrapKey($recipient_key, $cek, $complete_headers, $additional_headers);
 }