recvUnauthenticatedEncryptMessage method

List<int> recvUnauthenticatedEncryptMessage(
  1. bool meta,
  2. List<int> ciphertext
)

Receive and process an unauthenticated encrypted message in Strobe.

Parameters:

  • meta: A boolean flag indicating whether metadata is included in the operation.
  • ciphertext: The ciphertext to be received and decrypted.

Implementation

List<int> recvUnauthenticatedEncryptMessage(bool meta, List<int> ciphertext) {
  return operate(meta, StrobeOperation.recvEnc, ciphertext, 0, false);
}