Method: FlashSDK::ADT#certificate

Defined in:
lib/flashsdk/adt.rb

#certificateObject

Set true to create a certificate.

If this value is true, you can optionally set org_unit, org_name and country.

If this value is true, you MUST set cn, key_type, and pfx_file.

adt 'cert/SampleCert.pfx' do |t|
  t.certificate = true
  t.cn = 'SelfCertificate'
  t.key_type = '1024-RSA'
  t.pfx_file = 'cert/SampleCert.pfx'
  t.password = 'samplepassword'
end


88
# File 'lib/flashsdk/adt.rb', line 88

add_param :certificate, Boolean, { :hidden_value => true }