Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
418 views
in Technique[技术] by (71.8m points)

nsdata - How to combine and split Data in swift

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...