Module: Arb::Cipher

Defined in:
lib/arb/cipher.rb,
lib/arb/cipher/version.rb

Constant Summary collapse

VERSION =
"0.1.0"

Class Method Summary collapse

Class Method Details

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



22
23
24
# File 'lib/arb/cipher.rb', line 22

def method_missing(name,*args,&block)
  OpenSSL::Cipher.send name,*args,&block
end

.respond_to_missing?(*args) ⇒ Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/arb/cipher.rb', line 25

def respond_to_missing?(*args)
  OpenSSL::Cipher.respond_to? *args
end