4 ms·
Or just encrypt in-house and use HTTP.
by bureaucrat 7y ago
Or just encrypt in-house and use HTTP.
- maxkuzmins 7y agoThese guys receive requests from mobile devices. Afaik sending unencrypted HTTP requests is not allowed on some platforms (e.g. iOS).
- bureaucrat 7y agoFirst, they can offer both http and https endpoints. Second, you can send HTTP request if you set NSAllowsArbitraryLoads=true.
- throw03172019 7y agoYou can disable transport security for a certain domain using the plist key NSAppTransportSecurity. But you rarely should do this :) https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33 https://developer.apple.com/library/ios/documentation/Genera...
- jrockway 7y agoI think you should think long and hard before you roll your own crypto.
- gberger 7y agoYou don't need to roll your own crypto in order to encrypt in-house.