Sha256: c90fc21facf2bf5f22f624d76cc8fe5c56102cddfd32b6e28a7017b10c4180a0
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
module R509::Ocsp::Responder class OcspConfig def self.load_config config_data = File.read("config.yaml") Dependo::Registry[:config_pool] = R509::Config::CaConfigPool.from_yaml("certificate_authorities", config_data) Dependo::Registry[:copy_nonce] = YAML.load(config_data)["copy_nonce"] || false Dependo::Registry[:cache_headers] = YAML.load(config_data)["cache_headers"] || false Dependo::Registry[:max_cache_age] = YAML.load(config_data)["max_cache_age"] Dependo::Registry[:ocsp_signer] = R509::Ocsp::Signer.new( :configs => Dependo::Registry[:config_pool], :validity_checker => R509::Validity::Redis::Checker.new(Dependo::Registry[:redis]), :copy_nonce => Dependo::Registry[:copy_nonce] ) end def self.print_config Dependo::Registry[:log].warn "Config loaded" Dependo::Registry[:log].warn "Copy Nonce: "+Dependo::Registry[:copy_nonce].to_s Dependo::Registry[:log].warn "Cache Headers: "+Dependo::Registry[:cache_headers].to_s Dependo::Registry[:log].warn "Max Cache Age: "+Dependo::Registry[:max_cache_age].to_s Dependo::Registry[:config_pool].all.each do |config| Dependo::Registry[:log].warn "Config: " Dependo::Registry[:log].warn "CA Cert:"+config.ca_cert.subject.to_s Dependo::Registry[:log].warn "OCSP Cert (may be the same as above):"+config.ocsp_cert.subject.to_s Dependo::Registry[:log].warn "OCSP Validity Hours: "+config.ocsp_validity_hours.to_s Dependo::Registry[:log].warn "\n" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
r509-ocsp-responder-0.3.1 | lib/r509/ocsp/responder/ocsp-config.rb |