Parent

Methods

KASPAuditor::Config::Keys

Attributes

ksks[RW]
ttl[RW]
zsks[RW]

Public Class Methods

new(e) click to toggle source
# File ../../auditor/lib/kasp_auditor/config.rb, line 235
def initialize(e)
  ttl_text = e.elements['TTL'].text
  @ttl = Config.xsd_duration_to_seconds(ttl_text)
  @ksks = []
  e.get_elements('KSK').each {|k|
    key = AnyKey.new(k)
    @ksks.push(key)
  }
  @zsks = []
  e.get_elements('ZSK').each {|k|
    key = AnyKey.new(k)
    @zsks.push(key)
  }
end

Public Instance Methods

keys() click to toggle source
# File ../../auditor/lib/kasp_auditor/config.rb, line 232
def keys
  return @ksks + @zsks
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.