Use ecc for encryption in ios

I am trying to implement an ecc method for encryption. I looked at the following posts:

which does not have satisfactory solutions.

Now I'm thinking of using the python library
https://github.com/yann2192/pyelliptic

But I don't know if this was the best solution to use ecc for encryption, since I would still need to figure out a way to use the python library in objc.

Can someone point me in the right direction?

+6
source share
2 answers

Finally, I created my own library for ECC / ECDSA, which is now available on github

0
source

By expanding on @puzzlepalace's comment, you can try Libsodium . They even have a Swift library.

0
source

Source: https://habr.com/ru/post/987905/


All Articles