gunnarr-u opened a new issue, #524:
URL: https://github.com/apache/incubator-tuweni/issues/524
Formal argument is following
```java
/**
* Decrypt a sealed message using a given key.
*
* @param cipherText The cipher text to decrypt.
* @param sender The public key of the sender.
* @param receiver The secret key of the receiver.
* @return The decrypted data, or {@code null} if verification failed.
*/
@Nullable
public static byte[] decryptSealed(byte[] cipherText, PublicKey sender,
SecretKey receiver) {
```
But method actually needs receiver public key
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]