Project

General

Profile

Feature #9758

Updated by nobu (Nobuyoshi Nakada) over 8 years ago

Currently, `Net::HTTP` Net::HTTP can only send a single SSL certificate when it 
 establishes a connection. Some use-cases involve sending an entire 
 certificate chain to the destination; for this, `SSLContext` SSLContext supports 
 assigning to `#extra_chain_cert=`. #extra_chain_cert=. 
    
 This adds support in `Net::HTTP` Net::HTTP for exposing this underlying `SSLContext` SSLContext 
 property to end-users. 

Back