Module: RbNaCl::Sodium

Overview

Provides helpers for defining the libsodium bindings

Defined Under Namespace

Modules: Version

Instance Method Summary collapse

Instance Method Details

#primitiveObject



26
27
28
# File 'lib/rbnacl/sodium.rb', line 26

def primitive
  sodium_primitive
end

#sodium_constant(constant, name = constant) ⇒ Object



30
31
32
33
34
# File 'lib/rbnacl/sodium.rb', line 30

def sodium_constant(constant, name = constant)
  fn = "crypto_#{sodium_type}_#{sodium_primitive}_#{constant.to_s.downcase}"
  attach_function fn, [], :size_t
  const_set(name, public_send(fn))
end

#sodium_function(name, function, arguments) ⇒ Object



36
37
38
39
40
41
42
43
44
# File 'lib/rbnacl/sodium.rb', line 36

def sodium_function(name, function, arguments)
  module_eval <<-eos, __FILE__, __LINE__ + 1
  attach_function #{function.inspect}, #{arguments.inspect}, :int
  def self.#{name}(*args)
    ret = #{function}(*args)
    ret == 0
  end
  eos
end

#sodium_primitive(primitive = nil) ⇒ Object



21
22
23
24
# File 'lib/rbnacl/sodium.rb', line 21

def sodium_primitive(primitive = nil)
  return @primitive if primitive.nil?
  @primitive = primitive
end

#sodium_type(type = nil) ⇒ Object



16
17
18
19
# File 'lib/rbnacl/sodium.rb', line 16

def sodium_type(type = nil)
  return @type if type.nil?
  @type = type
end