MD5 3DES encryption Swift
I have an app that must send login credentials that have been encrypted first by MD5 and then by 3DES. I have managed to use CryptoSwift to encrypt the string by MD5. However I cannot find anything to encrypt by 3DES on Swift. I have tried CommonCrypto. As far as I can tell this is in C but could be imported into Objective C with a bridging header. I have found a few articles and tutorials that tell me how to import CommonCrypto into Swift, either by a bridging header(with the warning it will not work with frameworks) or by Model.map. However neither are working. Im not sure if this is a