Will SSL Encryption slow down page load? If so, how do I estimate the impact on performance for my web application?
            Asked
            
        
        
            Active
            
        
            Viewed 8,546 times
        
    5
            
            
        - 
                    possible duplicate of [How much overhead does SSL impose?](http://stackoverflow.com/questions/548029/how-much-overhead-does-ssl-impose) – Jonas Dec 11 '11 at 01:18
 - 
                    I measured Mitch Wheat's answer for level of constructiveness. 0% result. – Jayden Lawson Oct 10 '13 at 09:16
 
1 Answers
5
            This is a possible duplicate of several questions:
- What is the overhead of using HTTPS compared to HTTP?
 - HTTP vs HTTPS performance
 - How much overhead does SSL impose?
 
The last includes this answer, including: "non-SSL sockets are less than 10 times faster than SSL sockets". However, this can be a bit misleading - be sure to read the entire answer.
You can also mitigate the performance concern, at least on the server-side, by offloading the SSL processing to another device, e.g. a dedicated load balancer or firewall.