Changes between Version 2 and Version 3 of SslCertificateVerification
- Timestamp:
- 04/30/07 09:53:27 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SslCertificateVerification
v2 v3 24 24 The issuer certificate is set as property: 25 25 26 {{{ 26 27 service.options['protocol.http.ssl_config.ca_file'] = ISSUER_CA_PEM 28 }}} 27 29 where the ISSUER_CA_PEM is a path to a issuing authority cert. 28 30 30 32 31 33 So we define: 34 {{{ 32 35 service.options['protocol.http.ssl_config.verify_callback'] = 33 36 method(:validate_certificate) 34 37 }}} 35 38 and define the method like the this: 36 39