0

I'm trying to do an encryption method for ios mobile platform(Objective C) which on android(Java) is using this method

Need guidance on how to apply that method for ios. Am not very sure on how to port it to xcode to use it.

Thanks in advance :)

Kar Wai
  • 121
  • 1
  • 12
  • Here is an example of RSA encryption in Objective-C: http://stackoverflow.com/questions/4211484/send-rsa-public-key-to-iphone-and-use-it-to-encrypt?lq=1 – Thilo Aug 28 '15 at 04:02

1 Answers1

0

You could try having a look at this:

https://github.com/aerogear/aerogear-crypto-ios

It's a nice wrapper over the underlying crypto functionalities in iOS.

Pratham Mehta
  • 293
  • 2
  • 13