Which SSL library does SDWebImage use ?
darwinssl ? openssl ? or something else ?
For network, It just use NSURLSession based API. So actually it use CFNetwork's SSL implementation. You can check CFNetwork's open source code to learn.
https://opensource.apple.com/source/CFNetwork/
And ,the SSL crypto algorithm is placed into Security framework. Maybe you can check here to learn.
Most helpful comment
For network, It just use
NSURLSessionbased API. So actually it use CFNetwork's SSL implementation. You can check CFNetwork's open source code to learn.https://opensource.apple.com/source/CFNetwork/
And ,the SSL crypto algorithm is placed into Security framework. Maybe you can check here to learn.
https://opensource.apple.com/source/Security/