I'm encrypting a file "info.plist" using openssl in mac.
openssl enc -aes-256-cbc -salt -in info.plist -out info.data -pass pass:myPass
How can I decrypt this info.data file in my iOS app? I tried to use CryptoSwift pod but I can't figure out to make it work.