0

I am working on sending encrypted messages between two or more devices on swift. I have 3 constants of type Data: ephemeralPublicKey, ciphertext and signature I need to combine all 3 of them into 1 data, something like:

let data: Data = ephemeralPublicKey + ciphertext + signature

Then transmit this entire block of data to another device. On the new device I have to split it again back to ephemeralPublicKey, ciphertext and signature, so that I can use them to decrypt the message. I am struggling from a couple of days with this and I still don't have idea how to do it.

Asperi
  • 228,894
  • 20
  • 464
  • 690
Dakata
  • 1,227
  • 2
  • 14
  • 33

0 Answers0