Class: Ccrypto::PrivateKey

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(privKey) ⇒ PrivateKey

Returns a new instance of PrivateKey.



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

def initialize(privKey)
  @native_privKey = privKey
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



10
11
12
13
14
15
16
# File 'lib/ccrypto/private_key.rb', line 10

def method_missing(mtd, *args, &block)
  if @native_privKey.nil?
    super
  else
    @native_privKey.send(mtd, *args, &block)
  end
end

Instance Attribute Details

#native_privKeyObject

Returns the value of attribute native_privKey.



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

def native_privKey
  @native_privKey
end

Instance Method Details

#nativeObject



26
27
28
# File 'lib/ccrypto/private_key.rb', line 26

def native
  @native_privKey
end

#respond_to_missing?(mtd, *args, &block) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
21
22
23
24
# File 'lib/ccrypto/private_key.rb', line 18

def respond_to_missing?(mtd, *args, &block)
  if @native_privKey.nil?
    false
  else
    @native_privKey.respond_to?(mtd)
  end
end