Class: Pkernel::Certificate

Inherits:
Object
  • Object
show all
Extended by:
PkernelJce::Certificate
Defined in:
lib/pkernel_jce.rb

Defined Under Namespace

Classes: ExtKeyUsage, KeyUsage

Class Method Summary collapse

Methods included from PkernelJce::Certificate

dump, dump_to_file, dump_to_file_b64, dump_to_file_bin, dump_to_file_hex, dump_to_mem, dump_to_mem_b64, dump_to_mem_bin, dump_to_mem_hex, ensure_bc_cert, ensure_java_cert, generate, get_subject_fields, is_cert_object?, is_equal?, is_ext_key_usage_set?, is_issuer_cert?, is_self_signed?, load, load_from_file, load_from_file_b64, load_from_file_bin, load_from_file_hex, load_from_mem, load_from_mem_b64, load_from_mem_bin, load_from_mem_hex, load_multi_from_bin_bin, load_multi_from_file, load_multi_from_file_b64, load_multi_from_file_bin, load_multi_from_file_hex, load_multi_from_mem, load_multi_from_mem_b64, load_multi_from_mem_hex, parse_into_fields, public_key, to_binary

Class Method Details

.method_missing(mtd, *args, &block) ⇒ Object



46
47
48
49
50
51
52
# File 'lib/pkernel_jce.rb', line 46

def self.method_missing(mtd,*args,&block)
  if PkernelJce::Certificate.respond_to?(mtd)
    PkernelJce::Certificate.send(mtd,*args,&block)
  else
    super
  end
end