Class: Ccrypto::PublicKey

Inherits:
Object
  • Object
show all
Defined in:
lib/ccrypto/public_key.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pubkey) ⇒ PublicKey

Returns a new instance of PublicKey.



6
7
8
# File 'lib/ccrypto/public_key.rb', line 6

def initialize(pubkey)
  @native_pubKey = pubkey
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(mtd, *args, &block) ⇒ Object (private)



19
20
21
22
23
24
25
26
# File 'lib/ccrypto/public_key.rb', line 19

def method_missing(mtd, *args, &block)
  if @native_pubKey.nil?
    super
  else
    logger.debug "Sending to native pubKey '#{@native_pubKey}' of method '#{mtd}'"
    @native_pubKey.send(mtd, *args, &block)
  end
end

Instance Attribute Details

#native_pubKeyObject

Returns the value of attribute native_pubKey.



5
6
7
# File 'lib/ccrypto/public_key.rb', line 5

def native_pubKey
  @native_pubKey
end

Instance Method Details

#nativeObject



10
11
12
# File 'lib/ccrypto/public_key.rb', line 10

def native
  @native_pubKey
end